getAppId static method

Future<String> getAppId()

Obtains the application id from the agconnect-services.json file.

Implementation

static Future<String> getAppId() async {
  final String? result = await _channel.invokeMethod<String?>(
    'getAppId',
  );
  return result!;
}