FAutocompleteManagedControl constructor

const FAutocompleteManagedControl({
  1. FAutocompleteController? controller,
  2. TextEditingValue? initial,
  3. ValueChanged<TextEditingValue>? onChange,
})

Implementation

const FAutocompleteManagedControl({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._();