Fix missing dependency check

This commit is contained in:
Ming Ming 2022-08-17 22:42:14 +08:00
parent 7fe757ad5e
commit 3d534599ce

View file

@ -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);
}