openExternalEdit static method

  1. @Deprecated('Use FlutterContacts.native.showEditor(id) instead')
Future<String?> openExternalEdit(
  1. String contactId
)

Opens the native contact editor dialog.

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

Deprecated: Use FlutterContacts.native.showEditor(id) instead.

Implementation

@Deprecated('Use FlutterContacts.native.showEditor(id) instead')
static Future<String?> openExternalEdit(String contactId) =>
    native.showEditor(contactId);