requestAutofill method Null safety
Requests the system autofill UI to appear.
Currently only works on Android. Other platforms do not respond to this message.
See also:
- EditableText, a TextInputClient that calls this method when focused.
Implementation
void requestAutofill() {
assert(attached);
TextInput._instance._requestAutofill();
}