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