getAppManifest method

Future<GetAppManifestResult> getAppManifest()

Implementation

Future<GetAppManifestResult> getAppManifest() async {
  var result = await _client.send('Page.getAppManifest');
  return GetAppManifestResult.fromJson(result);
}