CreateCheckoutFormInitializeRequest constructor
CreateCheckoutFormInitializeRequest({
- String? locale,
- String? conversationId,
- required double price,
- required double paidPrice,
- int? installment,
- String? paymentChannel,
- String? basketId,
- String? paymentGroup,
- PaymentCard? paymentCard,
- required Buyer buyer,
- required Address shippingAddress,
- required Address billingAddress,
- required List<
BasketItem> basketItems, - required String callbackUrl,
- String? currency,
- required List<
int> enabledInstallments,
Implementation
CreateCheckoutFormInitializeRequest(
{String? locale,
String? conversationId,
required this.price,
required this.paidPrice,
this.installment,
this.paymentChannel,
this.basketId,
this.paymentGroup,
this.paymentCard,
required this.buyer,
required this.shippingAddress,
required this.billingAddress,
required this.basketItems,
required this.callbackUrl,
this.currency,
required this.enabledInstallments})
: super(locale, conversationId);