ActorRepoServiceDependencyDefinition<DependencyBloc extends RepoServiceBloc<Enum>, GroupEvent, ActorDependantEvent, ActorDependantState> constructor

ActorRepoServiceDependencyDefinition<DependencyBloc extends RepoServiceBloc<Enum>, GroupEvent, ActorDependantEvent, ActorDependantState>({
  1. required DependencyBloc bloc,
  2. required DependencyHandlerFunction<RepoServiceBlocEvent<Enum>, ActorDependantEvent, ActorDependantState> handler,
  3. Set<GroupEvent>? groupEvents,
})

Implementation

ActorRepoServiceDependencyDefinition({
  required this.bloc,
  required DependencyHandlerFunction<RepoServiceBlocEvent, ActorDependantEvent, ActorDependantState> handler,
  this.groupEvents,
}) : handler = _DependencyHandler<RepoServiceBlocEvent, ActorDependantEvent, ActorDependantState>(handler);