requestAutofill method

void requestAutofill()

Requests the system autofill UI to appear.

Currently only works on Android. Other platforms do not respond to this message.

See also:

Implementation

void requestAutofill() {
  assert(attached);
  TextInput._instance._requestAutofill();
}