GenderDropDown constructor

const GenderDropDown({
  1. Key? key,
  2. required Rx<String> rxString,
  3. required String hintText,
  4. required String label,
  5. required Map<String, String> items,
  6. required bool showCountryFlag,
  7. bool canEdit = true,
  8. bool isRequired = false,
})

Implementation

const GenderDropDown({
  super.key,
  required this.rxString,
  required this.hintText,
  required this.label,
  required this.items,
  required this.showCountryFlag,
  this.canEdit = true,
  this.isRequired = false,
});