getAppId method
Returns the unique (PWA) app id. Only returns values if the feature flag 'WebAppEnableManifestId' is enabled
Implementation
Future<GetAppIdResult> getAppId() async {
var result = await _client.send('Page.getAppId');
return GetAppIdResult.fromJson(result);
}