showEditor method

Future<String?> showEditor(
  1. String contactId
)

Shows the native contact editor dialog.

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

Implementation

Future<String?> showEditor(String contactId) =>
    _invoke<String>('native.showEditor', {'contactId': contactId});