openChrome static method
void
openChrome({})
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);
}