toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final alsoKnownAs = this.alsoKnownAs;
final name = this.name;
final officeIndices = this.officeIndices;
return {
'alsoKnownAs': ?alsoKnownAs,
'name': ?name,
'officeIndices': ?officeIndices,
};
}