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