getAndroidContacts method

  1. @override
Future getAndroidContacts({
  1. num? lastUpdatedAt,
})
override

Implementation

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