Skip to content

Commit 7b87f1d

Browse files
committed
Fix CI issues
1 parent 385b85d commit 7b87f1d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

change_notifier_provider/test/mock_repository.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class MockRepository extends TodosRepository {
88
int saveCount = 0;
99

1010
MockRepository([List<Todo> todos = const []])
11-
: entities = todos.map((it) => it.toEntity()).toList();
11+
: entities = todos.map((it) => it.toEntity()).toList();
1212

1313
@override
1414
Future<List<TodoEntity>> loadTodos() async => entities;

mvi_flutter/lib/widgets/extra_actions_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class ExtraActionsButton extends StatelessWidget {
66
final bool allComplete;
77
final bool hasCompletedTodos;
88

9-
ExtraActionsButton({
9+
const ExtraActionsButton({
1010
super.key,
1111
required this.onSelected,
1212
this.allComplete = false,

mvi_flutter/lib/widgets/filter_button.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class FilterButton extends StatelessWidget {
77
final VisibilityFilter activeFilter;
88
final bool isActive;
99

10-
FilterButton({
10+
const FilterButton({
1111
super.key,
1212
required this.onSelected,
1313
required this.activeFilter,

0 commit comments

Comments
 (0)