openExternalView static method

Future<void> openExternalView(
  1. String id
)

Opens external contact app to view an existing contact.

Implementation

static Future<void> openExternalView(String id) async =>
    await _channel.invokeMethod(
        Platform.isAndroid ? 'openExternalView' : 'openExternalViewOrEdit',
        [id]);