toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (assignedGroups != null) 'assignedGroups': assignedGroups!,
  if (attributes != null) 'attributes': attributes!,
  if (createTime != null) 'createTime': createTime!,
  if (databaseDeploymentDetails != null)
    'databaseDeploymentDetails': databaseDeploymentDetails!,
  if (databaseDetails != null) 'databaseDetails': databaseDetails!,
  if (hidden != null) 'hidden': hidden!,
  if (hideReason != null) 'hideReason': hideReason!,
  if (hideTime != null) 'hideTime': hideTime!,
  if (insightList != null) 'insightList': insightList!,
  if (labels != null) 'labels': labels!,
  if (machineDetails != null) 'machineDetails': machineDetails!,
  if (name != null) 'name': name!,
  if (performanceData != null) 'performanceData': performanceData!,
  if (sources != null) 'sources': sources!,
  if (title != null) 'title': title!,
  if (updateTime != null) 'updateTime': updateTime!,
};