FTextFieldManagedControl constructor
const
FTextFieldManagedControl({
- TextEditingController? controller,
- TextEditingValue? initial,
- ValueChanged<
TextEditingValue> ? onChange,
Creates a FTextFieldControl.
Implementation
const FTextFieldManagedControl({this.controller, this.initial, this.onChange})
: assert(
controller == null || initial == null,
'Cannot provide both controller and initial value. Pass initial value to the controller instead.',
),
super._();