addAccountQr method

Инициирует привязку счета покупателя к магазину в СБП и возвращает информацию о нём

Implementation

Future<AddAccountQrResponse> addAccountQr(AddAccountQrRequest request) =>
    _network(
      request,
      (Map<String, dynamic> json) => AddAccountQrResponse.fromJson(json),
    );