toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allocatedConnections = this.allocatedConnections;
  final createTime = this.createTime;
  final displayName = this.displayName;
  final hostType = this.hostType;
  final labels = this.labels;
  final name = this.name;
  final satisfiesPzi = this.satisfiesPzi;
  final satisfiesPzs = this.satisfiesPzs;
  final state = this.state;
  final type = this.type;
  final uid = this.uid;
  final updateTime = this.updateTime;
  final uri = this.uri;
  return {
    'allocatedConnections': ?allocatedConnections,
    'createTime': ?createTime,
    'displayName': ?displayName,
    'hostType': ?hostType,
    'labels': ?labels,
    'name': ?name,
    'satisfiesPzi': ?satisfiesPzi,
    'satisfiesPzs': ?satisfiesPzs,
    'state': ?state,
    'type': ?type,
    'uid': ?uid,
    'updateTime': ?updateTime,
    'uri': ?uri,
  };
}