uninstall method

Future<void> uninstall(
  1. String id
)

Uninstalls an unpacked extension (others not supported) from the profile. Available if the client is connected using the --remote-debugging-pipe flag and the --enable-unsafe-extension-debugging. id Extension id.

Implementation

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