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 _methodChannel.invokeMethod(
    'getAppId',
  );
  return result!;
}