openExternalInsert static method
- @Deprecated('Use FlutterContacts.native.showCreator(contact: contact) instead')
- 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);