autofillClients property
override
The collection of AutofillClient
s currently tied to this AutofillScope.
Every AutofillClient
in this list must have autofill enabled (i.e. its
AutofillClient.textInputConfiguration must have a non-null
AutofillConfiguration.)
Implementation
@override
Iterable<AutofillClient> get autofillClients {
return _clients.values
.where((AutofillClient client) => client.textInputConfiguration.autofillConfiguration.enabled);
}