Skip to content

Commit d78978b

Browse files
committed
Formatting
1 parent 4c83c92 commit d78978b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

example/test/widget_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ void main() {
1818
// Verify that platform version is retrieved.
1919
expect(
2020
find.byWidgetPredicate(
21-
(Widget widget) => widget is Text &&
22-
widget.data!.startsWith('Running on:'),
21+
(Widget widget) =>
22+
widget is Text && widget.data!.startsWith('Running on:'),
2323
),
2424
findsOneWidget,
2525
);

lib/src/debugger_mode.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
enum DebuggerMode { bar, bubble }
1+
enum DebuggerMode { bar, bubble }

lib/src/method_names.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ class MethodNames {
22
static const show = 'show';
33
static const hide = 'hide';
44
static const send = 'send';
5-
}
5+
}

0 commit comments

Comments
 (0)