ErrorV2 constructor

const ErrorV2({
  1. int? statusCode,
  2. String? message,
  3. String? details,
  4. dynamic exception,
})

Implementation

const ErrorV2({
  this.statusCode,
  this.message,
  this.details,
  this.exception,
});