getIosContacts method

  1. @override
Future getIosContacts({
  1. String? historyToken,
})
override

Implementation

@override
Future getIosContacts({String? historyToken}) async {
  final contacts = await methodChannel.invokeMethod('getContacts', {
    if (historyToken != null) 'historyToken': historyToken,
  });
  return contacts ?? {};
}