toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final physicalTopology = this.physicalTopology;
  final rdmaIpAddresses = this.rdmaIpAddresses;
  final runningInstances = this.runningInstances;
  return {
    'physicalTopology': ?physicalTopology,
    'rdmaIpAddresses': ?rdmaIpAddresses,
    'runningInstances': ?runningInstances,
  };
}