openExternalInsert static method Null safety
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);
}