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