launchApp method

Future<void> launchApp(
  1. String id
)

Launches an application. id The extension id of the application.

Implementation

Future<void> launchApp(String id) async {
  await promiseToFuture<void>($js.chrome.management.launchApp(id));
}