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