FailureModel constructor

FailureModel({
  1. bool? success,
  2. String? errorGroup,
  3. String? subErrorCode,
  4. String? message,
  5. dynamic error,
})

Implementation

FailureModel({
  this.success,
  this.errorGroup,
  this.subErrorCode,
  this.message,
  this.error,
});