BillingResultWrapper constructor

const BillingResultWrapper({
  1. required BillingResponse responseCode,
  2. int subResponseCode = 0,
  3. String? debugMessage,
})

Constructs the object with responseCode and debugMessage.

Implementation

const BillingResultWrapper({
  required this.responseCode,
  this.subResponseCode = 0,
  this.debugMessage,
});