fromJson static method
Inherited by: ChatJoinResultDeclined ChatJoinResultGuardBotApprovalRequired ChatJoinResultRequestSent ChatJoinResultSuccess
Implementation
static ChatJoinResultDeclined? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const ChatJoinResultDeclined();
}