toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final electionDay = this.electionDay;
  final id = this.id;
  final name = this.name;
  final ocdDivisionId = this.ocdDivisionId;
  final shapeLookupBehavior = this.shapeLookupBehavior;
  return {
    'electionDay': ?electionDay,
    'id': ?id,
    'name': ?name,
    'ocdDivisionId': ?ocdDivisionId,
    'shapeLookupBehavior': ?shapeLookupBehavior,
  };
}