fromJson static method

UpdateChatRevenueAmount? fromJson(
  1. Map<String, dynamic>? json
)
override

Inherited by: UpdateAccentColors UpdateActiveEmojiReactions UpdateActiveGiftAuctions UpdateActiveLiveLocationMessages UpdateActiveNotifications UpdateAgeVerificationParameters UpdateAnimatedEmojiMessageClicked UpdateAnimationSearchParameters UpdateApplicationRecaptchaVerificationRequired UpdateApplicationVerificationRequired UpdateAttachmentMenuBots UpdateAuthorizationState UpdateAutosaveSettings UpdateAvailableMessageEffects UpdateBasicGroup UpdateBasicGroupFullInfo UpdateBusinessConnection UpdateBusinessMessageEdited UpdateBusinessMessagesDeleted UpdateCall UpdateChatAccentColors UpdateChatAction UpdateChatActionBar UpdateChatActiveStories UpdateChatAddedToList UpdateChatAvailableReactions UpdateChatBackground UpdateChatBlockList UpdateChatBoost UpdateChatBusinessBotManageBar UpdateChatDefaultDisableNotification UpdateChatDraftMessage UpdateChatEmojiStatus UpdateChatFolders UpdateChatHasProtectedContent UpdateChatHasScheduledMessages UpdateChatIsMarkedAsUnread UpdateChatIsTranslatable UpdateChatJoinResult UpdateChatLastMessage UpdateChatMember UpdateChatMessageAutoDeleteTime UpdateChatMessageSender UpdateChatNotificationSettings UpdateChatOnlineMemberCount UpdateChatPendingJoinRequests UpdateChatPermissions UpdateChatPhoto UpdateChatPosition UpdateChatReadInbox UpdateChatReadOutbox UpdateChatRemovedFromList UpdateChatReplyMarkup UpdateChatRevenueAmount UpdateChatTheme UpdateChatTitle UpdateChatUnreadMentionCount UpdateChatUnreadPollVoteCount UpdateChatUnreadReactionCount UpdateChatVideoChat UpdateChatViewAsTopics UpdateCommunity UpdateConnectionState UpdateContactCloseBirthdays UpdateDefaultBackground UpdateDefaultPaidReactionType UpdateDefaultReactionType UpdateDeleteMessages UpdateDiceEmojis UpdateDirectMessagesChatTopic UpdateEmojiChatThemes UpdateFavoriteStickers UpdateFile UpdateFileAddedToDownloads UpdateFileDownload UpdateFileDownloads UpdateFileGenerationStart UpdateFileGenerationStop UpdateFileRemovedFromDownloads UpdateForumTopic UpdateForumTopicInfo UpdateFreezeState UpdateGiftAuctionState UpdateGramRevenueStatus UpdateGroupCall UpdateGroupCallMessageLevels UpdateGroupCallMessageSendFailed UpdateGroupCallMessagesDeleted UpdateGroupCallParticipant UpdateGroupCallParticipants UpdateGroupCallVerificationState UpdateHavePendingNotifications UpdateInstalledStickerSets UpdateLanguagePackStrings UpdateLiveStoryTopDonors UpdateManagedBot UpdateMessageContainsUnreadPollVotes UpdateMessageContent UpdateMessageContentOpened UpdateMessageEdited UpdateMessageFactCheck UpdateMessageInteractionInfo UpdateMessageIsPinned UpdateMessageLiveLocationViewed UpdateMessageMentionRead UpdateMessageReaction UpdateMessageReactions UpdateMessageSendAcknowledged UpdateMessageSendFailed UpdateMessageSendSucceeded UpdateMessageSuggestedPostInfo UpdateMessageUnreadReactions UpdateNewBusinessCallbackQuery UpdateNewBusinessMessage UpdateNewCallSignalingData UpdateNewCallbackQuery UpdateNewChat UpdateNewChatJoinRequest UpdateNewChosenInlineResult UpdateNewCustomEvent UpdateNewCustomQuery UpdateNewGroupCallMessage UpdateNewGroupCallPaidReaction UpdateNewGuestQuery UpdateNewInlineCallbackQuery UpdateNewInlineQuery UpdateNewMessage UpdateNewOauthRequest UpdateNewPreCheckoutQuery UpdateNewShippingQuery UpdateNotification UpdateNotificationGroup UpdateOption UpdateOwnedGramCount UpdateOwnedStarCount UpdatePaidMediaPurchased UpdatePendingMessage UpdatePoll UpdatePollAnswer UpdateProfileAccentColors UpdateQuickReplyShortcut UpdateQuickReplyShortcutDeleted UpdateQuickReplyShortcutMessages UpdateQuickReplyShortcuts UpdateReactionNotificationSettings UpdateRecentStickers UpdateSavedAnimations UpdateSavedMessagesTags UpdateSavedMessagesTopic UpdateSavedMessagesTopicCount UpdateSavedNotificationSounds UpdateScopeNotificationSettings UpdateSecretChat UpdateServiceNotification UpdateSpeechRecognitionTrial UpdateSpeedLimitNotification UpdateStakeDiceState UpdateStarRevenueStatus UpdateStickerSet UpdateStory UpdateStoryDeleted UpdateStoryListChatCount UpdateStoryPostFailed UpdateStoryPostSucceeded UpdateStoryStealthMode UpdateSuggestedActions UpdateSupergroup UpdateSupergroupFullInfo UpdateTermsOfService UpdateTextCompositionStyles UpdateTopicMessageCount UpdateTrendingStickerSets UpdateTrustedMiniAppBots UpdateUnconfirmedSession UpdateUnreadChatCount UpdateUnreadMessageCount UpdateUser UpdateUserFullInfo UpdateUserPrivacySettingRules UpdateUserStatus UpdateUserSubscription UpdateVideoPublished UpdateWebAppMessageSent UpdateWebBrowserSettings

Implementation

static UpdateChatRevenueAmount? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return UpdateChatRevenueAmount(
    chatId: (json['chat_id'] as int?) ?? 0,
    revenueAmount: ChatRevenueAmount.fromJson(
      tdMapFromJson(json['revenue_amount']),
    ),
  );
}