getContactsForEmail method
Fetches all contacts, or when specified, the contacts with the email
matching email
Works only on iOS
Implementation
@override
Future<List<Contact>> getContactsForEmail(
String email, {
bool withThumbnails = true,
bool photoHighResolution = true,
bool orderByGivenName = true,
bool iOSLocalizedLabels = true,
bool androidLocalizedLabels = true,
}) =>
_platform.getContactsForEmail(
email,
withThumbnails: withThumbnails,
photoHighResolution: photoHighResolution,
orderByGivenName: orderByGivenName,
iOSLocalizedLabels: iOSLocalizedLabels,
androidLocalizedLabels: androidLocalizedLabels,
);