openExternalInsert static method Null safety

Future<Contact?> openExternalInsert()

Opens external contact app to insert a new contact.

Implementation

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