Error constructor

Error({
  1. Map<String, String>? details,
  2. String? errorTime,
  3. String? errorUuid,
  4. String? message,
  5. String? reason,
})

Implementation

Error({
  this.details,
  this.errorTime,
  this.errorUuid,
  this.message,
  this.reason,
});