ApphudError constructor

ApphudError({
  1. bool networkIssue = false,
  2. String? message,
  3. int? errorCode,
  4. int? billingResponseCode,
  5. String? billingErrorTitle,
})

Implementation

ApphudError({
  this.networkIssue = false,
  this.message,
  this.errorCode,
  this.billingResponseCode,
  this.billingErrorTitle,
});