toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final costCenter = this.costCenter;
  final current = this.current;
  final department = this.department;
  final domain = this.domain;
  final endDate = this.endDate;
  final formattedType = this.formattedType;
  final fullTimeEquivalentMillipercent = this.fullTimeEquivalentMillipercent;
  final jobDescription = this.jobDescription;
  final location = this.location;
  final metadata = this.metadata;
  final name = this.name;
  final phoneticName = this.phoneticName;
  final startDate = this.startDate;
  final symbol = this.symbol;
  final title = this.title;
  final type = this.type;
  return {
    'costCenter': ?costCenter,
    'current': ?current,
    'department': ?department,
    'domain': ?domain,
    'endDate': ?endDate,
    'formattedType': ?formattedType,
    'fullTimeEquivalentMillipercent': ?fullTimeEquivalentMillipercent,
    'jobDescription': ?jobDescription,
    'location': ?location,
    'metadata': ?metadata,
    'name': ?name,
    'phoneticName': ?phoneticName,
    'startDate': ?startDate,
    'symbol': ?symbol,
    'title': ?title,
    'type': ?type,
  };
}