MediatorConfig constructor

const MediatorConfig({
  1. required Widget child,
  2. void onInitialize()?,
  3. Map<Type, CommandHandlerDelegate>? commandHandlers,
  4. Map<Type, QueryHandlerDelegate>? queryHandlers,
  5. Map<Type, List<AggregatorHandlerDelegate>>? aggregatorHandlers,
  6. Map<Type, List<EventHandlerDelegate>>? eventHandlers,
  7. Key? key,
})

Implementation

const MediatorConfig({
  required this.child,
  this.onInitialize,
  this.commandHandlers,
  this.queryHandlers,
  this.aggregatorHandlers,
  this.eventHandlers,
  super.key,
});