googlePay method
Запрос на оплату с помощью Google Pay
Implementation
Future<GooglePayResponse> googlePay(GooglePayRequest request) {
return _network(
request,
(Map<String, dynamic> json) => GooglePayResponse.fromJson(json),
);
}
Запрос на оплату с помощью Google Pay
Future<GooglePayResponse> googlePay(GooglePayRequest request) {
return _network(
request,
(Map<String, dynamic> json) => GooglePayResponse.fromJson(json),
);
}