toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dependencyInfo = this.dependencyInfo;
  final depth = this.depth;
  final location = this.location;
  final processes = this.processes;
  final source = this.source;
  final target = this.target;
  return {
    'dependencyInfo': ?dependencyInfo,
    'depth': ?depth,
    'location': ?location,
    'processes': ?processes,
    'source': ?source,
    'target': ?target,
  };
}