toJson method

Map<String, dynamic> toJson()

Implementation

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