PurchasesResponse constructor

PurchasesResponse({
  1. required int code,
  2. String? errorMessage,
  3. String? errorDescription,
  4. String? traceId,
  5. required List<Purchase?> purchases,
  6. required List<DigitalShopGeneralError?> errors,
})

Implementation

PurchasesResponse({
  required this.code,
  this.errorMessage,
  this.errorDescription,
  this.traceId,
  required this.purchases,
  required this.errors,
});