PhysicalLocationTypeaheadControl constructor

const PhysicalLocationTypeaheadControl({
  1. Key? key,
  2. FormValueChanged<IPhysicalLocation?>? onChange,
  3. bool? showIcon,
  4. IPhysicalLocation? initialValue,
  5. String? placeholder,
  6. bool autofocus = false,
  7. String? label,
  8. bool enabled = true,
  9. TextInputAction? textInputAction,
  10. FocusNode? focusNode,
  11. TextEditingController? textController,
  12. Formatter<IPhysicalLocation>? formatter,
})

Implementation

const PhysicalLocationTypeaheadControl({
  Key? key,
  this.onChange,
  this.showIcon,
  this.initialValue,
  this.placeholder,
  this.autofocus = false,
  this.label,
  this.enabled = true,
  this.textInputAction,
  this.focusNode,
  this.textController,
  this.formatter,
}) : super(key: key);