AutofillConfiguration constructor

const AutofillConfiguration(
  1. {required String uniqueIdentifier,
  2. required List<String> autofillHints,
  3. required TextEditingValue currentEditingValue,
  4. String? hintText}
)

Creates autofill related configuration information that can be sent to the platform.

Implementation

const AutofillConfiguration({
  required String uniqueIdentifier,
  required List<String> autofillHints,
  required TextEditingValue currentEditingValue,
  String? hintText,
}) : this._(
  enabled: true,
  uniqueIdentifier: uniqueIdentifier,
  autofillHints: autofillHints,
  currentEditingValue: currentEditingValue,
  hintText: hintText,
);