ChatEventTitleChanged.fromJson constructor
Parse from a json
Implementation
factory ChatEventTitleChanged.fromJson(Map<String, dynamic> json) =>
ChatEventTitleChanged(
oldTitle: json['old_title'],
newTitle: json['new_title'],
);