openExternalPick static method

Future<Contact?> openExternalPick()

Opens external contact app to pick an existing contact.

Implementation

static Future<Contact?> openExternalPick() async {
  final id = await _channel.invokeMethod('openExternalPick');
  return id == null ? null : getContact(id);
}