toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final absenteeVotingInfoUrl = this.absenteeVotingInfoUrl;
final ballotInfoUrl = this.ballotInfoUrl;
final correspondenceAddress = this.correspondenceAddress;
final electionInfoUrl = this.electionInfoUrl;
final electionNoticeText = this.electionNoticeText;
final electionNoticeUrl = this.electionNoticeUrl;
final electionOfficials = this.electionOfficials;
final electionRegistrationConfirmationUrl =
this.electionRegistrationConfirmationUrl;
final electionRegistrationUrl = this.electionRegistrationUrl;
final electionRulesUrl = this.electionRulesUrl;
final hoursOfOperation = this.hoursOfOperation;
final name = this.name;
final physicalAddress = this.physicalAddress;
final voterServices = this.voterServices;
final votingLocationFinderUrl = this.votingLocationFinderUrl;
return {
'absenteeVotingInfoUrl': ?absenteeVotingInfoUrl,
'ballotInfoUrl': ?ballotInfoUrl,
'correspondenceAddress': ?correspondenceAddress,
'electionInfoUrl': ?electionInfoUrl,
'electionNoticeText': ?electionNoticeText,
'electionNoticeUrl': ?electionNoticeUrl,
'electionOfficials': ?electionOfficials,
'electionRegistrationConfirmationUrl':
?electionRegistrationConfirmationUrl,
'electionRegistrationUrl': ?electionRegistrationUrl,
'electionRulesUrl': ?electionRulesUrl,
'hoursOfOperation': ?hoursOfOperation,
'name': ?name,
'physicalAddress': ?physicalAddress,
'voter_services': ?voterServices,
'votingLocationFinderUrl': ?votingLocationFinderUrl,
};
}