ErrorInfo constructor

ErrorInfo({
  1. String? bloc,
  2. Object? error,
  3. DateTime? timestamp,
  4. StackTrace? stackTrace,
})

Implementation

ErrorInfo({
  this.bloc,
  this.error,
  this.timestamp,
  this.stackTrace,
});