GenderPicker constructor

const GenderPicker({
  1. required Stream<Gender> stream,
  2. required FormFieldCallback onChanged,
  3. required Key dropDownInputKey,
  4. required String hintText,
  5. bool? enabled,
})

Implementation

const GenderPicker({
  required this.stream,
  required this.onChanged,
  required this.dropDownInputKey,
  required this.hintText,
  bool? enabled,
}) : enabled = enabled ?? true;