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