GooglePayRequest constructor

GooglePayRequest({
  1. required String merchant,
  2. required String orderNumber,
  3. required String paymentToken,
  4. required int amount,
  5. required String returnUrl,
  6. ProtocolVersion? protocolVersion,
  7. String? description,
  8. String? language,
  9. int? feeInput,
  10. Map<String, dynamic>? additionalParameters,
  11. bool? preAuth,
  12. String? clientId,
  13. String? ip,
  14. String? currencyCode,
  15. String? email,
  16. int? phone,
  17. String? failUrl,
  18. String? dynamicCallbackUrl,
  19. BillingPayerData? billingPayerData,
})

Запрос на оплату с помощью Google Pay

Implementation

GooglePayRequest({
  required this.merchant,
  required this.orderNumber,
  required this.paymentToken,
  required this.amount,
  required this.returnUrl,
  this.protocolVersion,
  this.description,
  this.language,
  this.feeInput,
  this.additionalParameters,
  this.preAuth,
  this.clientId,
  this.ip,
  this.currencyCode,
  this.email,
  this.phone,
  this.failUrl,
  this.dynamicCallbackUrl,
  this.billingPayerData,
});