PaymentKey constructor

const PaymentKey({
  1. required int integration,
  2. required String key,
  3. String? gatewayType,
  4. int? iframeId,
  5. required int orderId,
  6. String? redirectionUrl,
  7. required bool saveCard,
})

Implementation

const PaymentKey({
  required this.integration,
  required this.key,
  this.gatewayType,
  this.iframeId,
  required this.orderId,
  this.redirectionUrl,
  required this.saveCard,
});