fromJson static method

PrepSchool fromJson(
  1. dynamic wrapped
)
override

Implementation

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