googlePay method

Future<GooglePayResponse> googlePay(
  1. GooglePayRequest request
)

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

Implementation

Future<GooglePayResponse> googlePay(GooglePayRequest request) {
  return _network(
    request,
    (Map<String, dynamic> json) => GooglePayResponse.fromJson(json),
  );
}