ClassInfo.fromJson constructor

ClassInfo.fromJson(
  1. Map<String, dynamic> json
)

Implementation

ClassInfo.fromJson(Map<String, dynamic> json) {
  name = json['name'];
  type = ClassType.values[json['type']];
  hasDefaultConstructor = json['hasDefaultConstructor'];
}