openExternalInsert static method

  1. @Deprecated('Use FlutterContacts.native.showCreator(contact: contact) instead')
Future<String?> openExternalInsert([
  1. Contact? contact
])

Opens the native contact creator dialog.

contact - Optional contact data to pre-fill the form.

Returns the ID of the newly created contact if created, or null if the user cancelled.

Deprecated: Use FlutterContacts.native.showCreator(contact: contact) instead.

Implementation

@Deprecated('Use FlutterContacts.native.showCreator(contact: contact) instead')
static Future<String?> openExternalInsert([Contact? contact]) =>
    native.showCreator(contact: contact);