We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810b852 commit 2e67248Copy full SHA for 2e67248
pkgs/browser_launcher/lib/src/chrome.dart
@@ -113,11 +113,11 @@ class Chrome {
113
/// Starts Chrome with the given arguments.
114
///
115
/// Each url in [urls] will be loaded in a separate tab.
116
- static Future<void> start(
+ static Future<Process> start(
117
List<String> urls, {
118
List<String> args = const [],
119
}) async {
120
- await _startProcess(urls, args: args);
+ return await _startProcess(urls, args: args);
121
}
122
123
static Future<Process> _startProcess(
0 commit comments