fromJson static method
Inherited by: ChatJoinRequestResultApproved ChatJoinRequestResultDeclined ChatJoinRequestResultQueued
Implementation
static ChatJoinRequestResultQueued? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const ChatJoinRequestResultQueued();
}