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