ErrorInformation constructor

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

Implementation

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