ApplePayRequest constructor

ApplePayRequest({
  1. required String merchant,
  2. required String paymentToken,
  3. String? orderNumber,
  4. String? description,
  5. String? language,
  6. int? feeInput,
  7. String? clientId,
  8. Map<String, dynamic>? additionalParameters,
  9. bool? preAuth,
  10. String? dynamicCallbackUrl,
})

Запрос оплаты через Apple Pay

Implementation

ApplePayRequest({
  required this.merchant,
  required this.paymentToken,
  this.orderNumber,
  this.description,
  this.language,
  this.feeInput,
  this.clientId,
  this.additionalParameters,
  this.preAuth,
  this.dynamicCallbackUrl,
});