FormFieldChoiceOption constructor

FormFieldChoiceOption({
  1. required String value,
  2. String? name,
})

Implementation

FormFieldChoiceOption({
  required this.value,
  String? name,
}) : name = name ?? value;