openCurrentPageInApp method

Future<void> openCurrentPageInApp(
  1. String manifestId
)

Opens the current page in its web app identified by the manifest id, needs to be called on a page target. This function returns immediately without waiting for the app to finish loading.

Implementation

Future<void> openCurrentPageInApp(String manifestId) async {
  await _client.send('PWA.openCurrentPageInApp', {
    'manifestId': manifestId,
  });
}