batchDeleteContacts method

  1. @override
Future<bool> batchDeleteContacts({
  1. required List<String> contactIds,
})
override

Implementation

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