ErrorDTO constructor

const ErrorDTO({
  1. String? errorVersion,
  2. DateTime? timestamp,
  3. int? statusCode,
  4. String? message,
  5. String? details,
  6. dynamic exception,
})

Implementation

const ErrorDTO({
  this.errorVersion,
  this.timestamp,
  this.statusCode,
  this.message,
  this.details,
  this.exception,
});