getCardList method

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

Implementation

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