fromJson static method

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

Implementation

static EndClassBody fromJson(Map<String, dynamic> json) {
  return EndClassBody(
    classId: json['class_id'] ?? '',
  );
}