getSingleCustomList method
Gets the data of the customList identified by it's listId
or list uuid and returns a SingleCustomListResponse
containing the data.
Implementation
Future<SingleCustomListResponse> getSingleCustomList(String listId) async {
var response = await getSingleCustomListResponse(listId);
try {
return SingleCustomListResponse.fromJson(jsonDecode(response.body));
} on Exception {
throw MangadexServerException(jsonDecode(response.body));
}
}