fromJson static method

CollegeStudentList fromJson(
  1. dynamic wrapped
)
override

Implementation

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