chargeQr method

Future<ChargeQrResponse> chargeQr(
  1. ChargeQrRequest request
)

Проведение платежа по привязанному счету QR

Implementation

Future<ChargeQrResponse> chargeQr(ChargeQrRequest request) => _network(
      request,
      (Map<String, dynamic> json) => ChargeQrResponse.fromJson(json),
    );