getInstallIdAsync static method

Future<String> getInstallIdAsync()

Get appcenter installation id

Implementation

static Future<String> getInstallIdAsync() async {
  return await _methodChannel
      .invokeMethod('getInstallId')
      .then((r) => r as String);
}