ErrorDetails constructor

ErrorDetails({
  1. String? code,
  2. String? message,
})

Implementation

ErrorDetails({
  this.code,
  this.message,
});