SelectionForm constructor

SelectionForm({
  1. required String? value,
  2. required IconData? icon,
  3. required Function saveValue,
  4. required Widget buttons,
  5. required double width,
  6. required double height,
  7. bool header = true,
  8. required List<DropdownMenuItem<String>> selection,
  9. String? validationError,
  10. required String hintText,
  11. GlobalKey<FormFieldState>? selectionKey,
  12. bool disabled = false,
  13. bool responseOverride = false,
  14. FocusNode? selectFocus,
  15. FocusNode? nextFocus,
})

Implementation

SelectionForm({
  required this.value,
  required this.icon,
  required this.saveValue,
  required this.buttons,
  required this.width,
  required this.height,
  this.header = true,
  required this.selection,
  this.validationError,
  required this.hintText,
  this.selectionKey,
  this.disabled = false,
  this.responseOverride = false,
  this.selectFocus,
  this.nextFocus,
});