showViewer method

Future<void> showViewer(
  1. String contactId
)

Shows the native contact viewer dialog.

Implementation

Future<void> showViewer(String contactId) async {
  await _invoke<void>('native.showViewer', {'contactId': contactId});
}