batchDeleteContacts method
Implementation
@override
Future<bool> batchDeleteContacts({required List<String> contactIds}) async {
final bool success = await methodChannel.invokeMethod(
'batchDeleteContacts',
{'contactIds': contactIds},
);
return success;
}