toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (associations != null) 'associations': associations!,
  if (connectedDeploymentGroups != null)
    'connectedDeploymentGroups': connectedDeploymentGroups!,
  if (createTime != null) 'createTime': createTime!,
  if (description != null) 'description': description!,
  if (labels != null) 'labels': labels!,
  if (mirroringDeploymentGroup != null)
    'mirroringDeploymentGroup': mirroringDeploymentGroup!,
  if (name != null) 'name': name!,
  if (reconciling != null) 'reconciling': reconciling!,
  if (state != null) 'state': state!,
  if (updateTime != null) 'updateTime': updateTime!,
};