FailureInfo constructor

FailureInfo({
  1. ErrorCode? errorCode,
  2. String? errorMessage,
  3. int? statusCode,
})

Implementation

FailureInfo({
  this.errorCode,
  this.errorMessage,
  this.statusCode,
});