ServiceBloc constructor

ServiceBloc(
  1. ServiceState initialState, {
  2. required ServiceDataRepository serviceDataRepository,
})

Implementation

ServiceBloc(
  super.initialState, {
  required this.serviceDataRepository,
}) {
  on(_handleCreate);
  on(_multichecklistChanged);
  on(_handleSearch);
  on(_handlereset);
  on(_handleSelect);
}