BlocEventLog constructor
BlocEventLog({
- required Bloc bloc,
- required Object? event,
- required TalkerBlocLoggerSettings settings,
Implementation
BlocEventLog({
required this.bloc,
required this.event,
required this.settings,
}) : super(settings.printEventFullData
? '${bloc.runtimeType} receive event:\n$event'
: '${bloc.runtimeType} receive event: ${event.runtimeType}');