AutofillConfiguration constructor Null safety
- {required String uniqueIdentifier,
- required List<
String> autofillHints, - required TextEditingValue currentEditingValue,
- 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,
);