mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
Fix missing dependency check
This commit is contained in:
parent
7fe757ad5e
commit
3d534599ce
1 changed files with 1 additions and 0 deletions
|
@ -65,6 +65,7 @@ class SearchLandingBloc
|
|||
extends Bloc<SearchLandingBlocEvent, SearchLandingBlocState> {
|
||||
SearchLandingBloc(this._c)
|
||||
: assert(require(_c)),
|
||||
assert(ListPerson.require(_c)),
|
||||
super(SearchLandingBlocInit()) {
|
||||
on<SearchLandingBlocEvent>(_onEvent);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue