fromJson static method

CollegeStudent fromJson(
  1. dynamic wrapped
)
override

Implementation

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