getAndroidContacts method
Implementation
@override
Future getAndroidContacts({num? lastUpdatedAt}) async {
final contacts = await methodChannel.invokeMethod('getContacts', {
if (lastUpdatedAt != null) 'lastUpdatedAt': lastUpdatedAt,
});
return contacts ?? [];
}