ChatEventDescriptionChanged.fromJson constructor
Parse from a json
Implementation
factory ChatEventDescriptionChanged.fromJson(Map<String, dynamic> json) => ChatEventDescriptionChanged(
oldDescription: json['old_description'],
newDescription: json['new_description'],
);