PurchaseResult constructor

PurchaseResult({
  1. required PurchaseResultType type,
  2. String? error,
})

Implementation

PurchaseResult({
  required this.type,
  this.error,
});