fromJson static method
Implementation
static RevokeMessageBody fromJson(Map<String, dynamic> json) {
return RevokeMessageBody(
classId: json['class_id'] ?? '',
messageSeq: json['message_seq'] ?? '',
);
}
static RevokeMessageBody fromJson(Map<String, dynamic> json) {
return RevokeMessageBody(
classId: json['class_id'] ?? '',
messageSeq: json['message_seq'] ?? '',
);
}