FieldDropdown constructor Null safety

const FieldDropdown(
  1. {String? label,
  2. String? hint,
  3. bool? enabled,
  4. String? type,
  5. List<Map<String, dynamic>>? options,
  6. dynamic initialValue,
  7. double? sequence}
)

Implementation

const FieldDropdown({
  this.label,
  this.hint,
  this.enabled,
  this.type,
  this.options,
  this.initialValue,
  this.sequence,
});