BoundaryBloc constructor

BoundaryBloc(
  1. BoundaryState initialState, {
  2. required BoundaryDataRepository boundaryRepository,
})

Implementation

BoundaryBloc(
  super.initialState, {
  required this.boundaryRepository,
}) {
  on(_handleReset);
  on(_handleSearch);
  on(_handleSelect);
  on(_handleSubmit);
  on(_handlefind);
}