fromJson static method

CollegeList fromJson(
  1. dynamic wrapped
)
override

Implementation

static CollegeList fromJson(wrapped) => wrapped is CollegeList
    ? wrapped
    : CollegeList(wrapped as Map<String, dynamic>, update: true);