applePayRecurrent method

Запрос на проведение рекуррентных платежей Apple Pay

Implementation

Future<ApplePayRecurrentResponse> applePayRecurrent(
  ApplePayRecurrentRequest request,
) {
  return _network(
    request,
    (Map<String, dynamic> json) => ApplePayRecurrentResponse.fromJson(json),
  );
}