fromJson static method
Implementation
static ActionBody fromJson(Map<String, dynamic> json) {
return ActionBody(
classId: json['class_id'] ?? '',
userId: json['user_id'] ?? '',
actionType: MemberActionType.values.byName(json['action_type'] ?? ''),
);
}