1
+ // ignore_for_file: no_leading_underscores_for_library_prefixes
1
2
import 'package:gate_example/database/repositories/book_repository.dart' as _i1;
2
3
import 'package:gate_example/database/repositories/user_repository.dart' as _i2;
3
4
import 'package:gate_example/database/repositories/library_repository.dart'
@@ -15,28 +16,26 @@ class AppProvider {
15
16
static final AppProvider instance = AppProvider ._();
16
17
17
18
// BookRepository singleton
18
- late final _i1.BookRepository _bookRepositoryBuild =
19
- _i1.BookRepository .build ();
19
+ final _i1.BookRepository _bookRepositoryBuild = _i1.BookRepository .build ();
20
20
21
21
// BookRepository mock
22
22
_i1.BookRepository ? _bookRepositoryBuildMock;
23
23
24
24
// UserRepository singleton
25
- late final _i2.UserRepository _userRepositoryBuild =
26
- _i2.UserRepository .build ();
25
+ final _i2.UserRepository _userRepositoryBuild = _i2.UserRepository .build ();
27
26
28
27
// UserRepository mock
29
28
_i2.UserRepository ? _userRepositoryBuildMock;
30
29
31
30
// LibraryRepository singleton
32
- late final _i3.LibraryRepository _libraryRepositoryBuild =
31
+ final _i3.LibraryRepository _libraryRepositoryBuild =
33
32
_i3.LibraryRepository .build ();
34
33
35
34
// LibraryRepository mock
36
35
_i3.LibraryRepository ? _libraryRepositoryBuildMock;
37
36
38
37
// AuthenticationService singleton
39
- late final _i4.AuthenticationService _authenticationServiceBuild =
38
+ final _i4.AuthenticationService _authenticationServiceBuild =
40
39
_i4.AuthenticationService .build ();
41
40
42
41
// AuthenticationService mock
0 commit comments