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 bfd695f commit 8fa32c3Copy full SHA for 8fa32c3
packages/dart_frog_cli/e2e/test/helpers/dart_frog_dev.dart
@@ -12,8 +12,8 @@ Future<Process> dartFrogDev({required Directory directory}) async {
12
runInShell: true,
13
);
14
15
- late StreamSubscription stdoutSubscription;
16
- late StreamSubscription stderrSubscription;
+ late StreamSubscription<List<int>> stdoutSubscription;
+ late StreamSubscription<List<int>> stderrSubscription;
17
18
stdoutSubscription = process.stdout.listen((event) {
19
final message = utf8.decode(event);
0 commit comments