fromJson static method
Inherited by: MessageTopicDirectMessages MessageTopicForum MessageTopicSavedMessages MessageTopicThread
Implementation
static MessageTopicThread? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return MessageTopicThread(
messageThreadId: (json['message_thread_id'] as int?) ?? 0,
);
}