You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class ChatMessage {
|
|
final int o;
|
|
final String d;
|
|
|
|
ChatMessage({required this.o, required this.d});
|
|
|
|
ChatMessage.fromJson(Map<String, dynamic> json)
|
|
: o = json['o'],
|
|
d = json['d'];
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'o': o,
|
|
'd': d,
|
|
};
|
|
}
|