ConfirmPurchaseResponse constructor

ConfirmPurchaseResponse({
  1. required bool success,
  2. String? errorMessage,
})

Implementation

ConfirmPurchaseResponse({
  required this.success,
  this.errorMessage,
});