showEditor method

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

Shows the native contact editor for contactId. Returns the saved contact's ID, or null if the user cancelled.

Same permissions as showViewer.

Implementation

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