Errors constructor

Errors({
  1. num? errorCode,
  2. String? errorMessage,
})

Implementation

Errors({
  this.errorCode,
  this.errorMessage,
});