selectContacts method

Future<List<Contact>?> selectContacts()

Implementation

Future<List<Contact>?> selectContacts() async {
  if (!Platform.isIOS) throw UnimplementedError();
  final List<dynamic>? result = await _channel.invokeMethod('selectContacts');
  return result?.map((e) => Contact.fromMap(e)).toList();
}