Skip to content

Commit 5710517

Browse files
committed
fix unnecessary_underscores warning
1 parent 0bed9cf commit 5710517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deeplink_cookbook/lib/main.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ final router = GoRouter(
88
routes: [
99
GoRoute(
1010
path: '/',
11-
builder: (_, __) =>
11+
builder: (_, _) =>
1212
Scaffold(appBar: AppBar(title: const Text('Home Screen'))),
1313
routes: [
1414
GoRoute(
1515
path: 'details',
16-
builder: (_, __) =>
16+
builder: (_, _) =>
1717
Scaffold(appBar: AppBar(title: const Text('Details Screen'))),
1818
),
1919
],

0 commit comments

Comments
 (0)