GooglePayRequest constructor
GooglePayRequest({
- required String merchant,
- required String paymentToken,
- required int amount,
- required String returnUrl,
- String? failUrl,
- String? orderNumber,
- String? description,
- String? language,
- Map<
String, dynamic> ? additionalParameters, - bool? preAuth,
- String? clientId,
- String? ip,
- String? currencyCode,
- String? email,
- 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,
});