GooglePayRequest constructor

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

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

Implementation

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