fromJson static method
Implementation
static StateReportBody fromJson(Map<String, dynamic> json) {
return StateReportBody(
classId: json['class_id'] ?? '',
state: json['state'] ?? '',
type: StateTypeEnum.values.byName(json['type'] ?? ''),
);
}