getAppId static method
Implementation
static Future<String> getAppId({
required String connectionId,
}) async {
final result = await _channel.invokeMethod('getAppId', {
'connectionId': connectionId,
});
ExceptionHandler.checkException(result);
return result;
}