toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final childrenLocations = this.childrenLocations;
final parentChain = this.parentChain;
final parentLocation = this.parentLocation;
return {
'childrenLocations': ?childrenLocations,
'parentChain': ?parentChain,
'parentLocation': ?parentLocation,
};
}