uninstall method

Future<void> uninstall(
  1. String manifestId
)

Uninstalls the given manifest_id and closes any opened app windows.

Implementation

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