openChrome static method

void openChrome({
  1. String chromePath = r'C:\Program Files\Google\Chrome\Application\chrome.exe',
  2. required List<String> urls,
})

Implementation

static void openChrome({
  String chromePath = r'C:\Program Files\Google\Chrome\Application\chrome.exe',
  required List<String> urls,
}) async {
  await Process.start(chromePath, urls);
}