ChatEventDescriptionChanged.fromJson constructor

ChatEventDescriptionChanged.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

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