toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ageRanges = this.ageRanges;
  final includeUndetermined = this.includeUndetermined;
  return {
    'ageRanges': ?ageRanges,
    'includeUndetermined': ?includeUndetermined,
  };
}