FieldDropdown constructor

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

Implementation

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