listFromJson static method

List<CancelledSeriesModel> listFromJson(
  1. dynamic json
)

Implementation

static List<CancelledSeriesModel> listFromJson(dynamic json) =>
    json.map(CancelledSeriesModel.fromJson).toList();