getTotalContacts method

  1. @override
Future<int?> getTotalContacts({
  1. String? query,
  2. bool? phoneQuery,
})
override

Implementation

@override
Future<int?> getTotalContacts({
  String? query,
  bool? phoneQuery,
}) {
  return channel.invokeMethod('getTotalContacts', {
    kquery: query,
    kphoneQuery: phoneQuery,
  });
}