BlocLogRecord constructor

BlocLogRecord({
  1. required BlocLogRecordType type,
  2. BlocBase? bloc,
  3. Object? event,
  4. Change? change,
  5. Transition? transition,
  6. Object? error,
  7. StackTrace? stackTrace,
})

Implementation

BlocLogRecord({
  required this.type,
  this.bloc,
  this.event,
  this.change,
  this.transition,
  this.error,
  this.stackTrace,
});