toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allocatedConnections != null)
        'allocatedConnections': allocatedConnections!,
      if (createTime != null) 'createTime': createTime!,
      if (displayName != null) 'displayName': displayName!,
      if (hostType != null) 'hostType': hostType!,
      if (labels != null) 'labels': labels!,
      if (name != null) 'name': name!,
      if (state != null) 'state': state!,
      if (type != null) 'type': type!,
      if (uid != null) 'uid': uid!,
      if (updateTime != null) 'updateTime': updateTime!,
      if (uri != null) 'uri': uri!,
    };