BlocStateLog constructor

BlocStateLog({
  1. required Bloc bloc,
  2. required Transition transition,
  3. required ISpectifyBlocSettings settings,
})

Implementation

BlocStateLog({
  required this.bloc,
  required this.transition,
  required this.settings,
}) : super(
        key: getKey,
        '${bloc.runtimeType} with event ${transition.event.runtimeType}',
        title: getKey,
      );