fromJson static method

College fromJson(
  1. dynamic wrapped
)
override

Implementation

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