PurchaseResult constructor

PurchaseResult({
  1. int? responseCode,
  2. String? debugMessage,
  3. String? code,
  4. String? message,
})

Implementation

PurchaseResult({
  this.responseCode,
  this.debugMessage,
  this.code,
  this.message,
});