fromJson static method
Inherited by: SavedMessagesTopicTypeAuthorHidden SavedMessagesTopicTypeMyNotes SavedMessagesTopicTypeSavedFromChat
Implementation
static SavedMessagesTopicTypeSavedFromChat? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return SavedMessagesTopicTypeSavedFromChat(
chatId: (json['chat_id'] as int?) ?? 0,
);
}