ErrorInfo constructor

ErrorInfo({
  1. String? errorCode,
  2. String? errorString,
})

Implementation

ErrorInfo({
  this.errorCode,
  this.errorString,
});