FlutterFormInputWidget<T> constructor

const FlutterFormInputWidget<T>({
  1. required FlutterFormInputController<T> controller,
  2. Key? key,
  3. FocusNode? focusNode,
  4. Widget? label,
  5. bool enabled = true,
})

Implementation

const FlutterFormInputWidget({
  required this.controller,
  super.key,
  this.focusNode,
  this.label,
  this.enabled = true,
});