list method

Future<Iterable<Show>> list(
  1. List<String> showsId
)

Get one or several shows

Implementation

Future<Iterable<Show>> list(List<String> showsId) async => _listWithIds(
    path: _path, ids: showsId, jsonKey: 'shows', fromJson: Show.fromJson);