toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final includeJobsWithUnspecifiedCompensationRange =
      this.includeJobsWithUnspecifiedCompensationRange;
  final range = this.range;
  final type = this.type;
  final units = this.units;
  return {
    'includeJobsWithUnspecifiedCompensationRange':
        ?includeJobsWithUnspecifiedCompensationRange,
    'range': ?range,
    'type': ?type,
    'units': ?units,
  };
}