fromJson static method
Inherited by: PollVoteRestrictionReasonClosed PollVoteRestrictionReasonCountryRestricted PollVoteRestrictionReasonMembershipRequired PollVoteRestrictionReasonOther PollVoteRestrictionReasonScheduled PollVoteRestrictionReasonYetUnsent
Implementation
static PollVoteRestrictionReasonClosed? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return const PollVoteRestrictionReasonClosed();
}