File tree Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Expand file tree Collapse file tree 4 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1- library blocs;
2-
31export 'src/models/models.dart' ;
42export 'src/stats_bloc.dart' ;
53export 'src/todo_bloc.dart' ;
Original file line number Diff line number Diff line change @@ -9,5 +9,5 @@ class UserBloc {
99 Stream <UserEntity > login () =>
1010 _repository.login ().asStream ().asBroadcastStream ();
1111
12- UserBloc (UserRepository repository) : this . _repository = repository;
12+ UserBloc (UserRepository repository) : _repository = repository;
1313}
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ environment:
88
99dependencies :
1010 collection : ^1.15.0
11+ meta : ^1.15.0
1112 rxdart : ^0.28.0
1213 todos_repository_core :
1314 path : ../todos_repository_core
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import 'dart:async';
22
33import 'package:mockito/mockito.dart' ;
44import 'package:simple_blocs/simple_blocs.dart' ;
5- import 'package:simple_blocs/src/models/models.dart' ;
65import 'package:test/test.dart' ;
76
87class MockTodosInteractor extends Mock implements TodosInteractor {}
You can’t perform that action at this time.
0 commit comments