ErrorReport constructor

ErrorReport({
  1. Object? report,
  2. StackTrace? stackTrace,
})

the constructor cannot be constant

Implementation

ErrorReport({
  this.report,
  this.stackTrace,
});