CheckoutResponse constructor

CheckoutResponse({
  1. required String paymentMethod,
  2. String? paymentId,
  3. PixData? pix,
  4. String? status,
  5. String? depositRequestId,
  6. String? gatewayBaseUrl,
  7. String? publicKeyUrl,
})

Implementation

CheckoutResponse({
  required this.paymentMethod,
  this.paymentId,
  this.pix,
  this.status,
  this.depositRequestId,
  this.gatewayBaseUrl,
  this.publicKeyUrl,
});