getCardList method

Возвращает список привязанных карт

Implementation

Future<GetCardListResponse> getCardList(GetCardListRequest request) {
  return _network(
    request,
    (Map<String, dynamic> json) => GetCardListResponse.fromJson(json),
  );
}