CheckoutResult constructor

CheckoutResult({
  1. String? result,
  2. int? id,
  3. String? status,
  4. String? statusDetail,
  5. String? paymentMethodId,
  6. String? paymentTypeId,
  7. String? operationType,
  8. String? transactionAmount,
})

CheckoutResult gets the result of the operation using the sdk

Implementation

CheckoutResult({
  this.result,
  this.id,
  this.status,
  this.statusDetail,
  this.paymentMethodId,
  this.paymentTypeId,
  this.operationType,
  this.transactionAmount,
});