SearchBloc constructor

SearchBloc(
  1. FireStoreRepository repository
)

Implementation

SearchBloc(this.repository) : super(SearchInitial()) {
  on<FetchSearchResult>(_onFeatchSearchResult);
}