toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (backupPlan != null) 'backupPlan': backupPlan!,
  if (cluster != null) 'cluster': cluster!,
  if (createTime != null) 'createTime': createTime!,
  if (description != null) 'description': description!,
  if (etag != null) 'etag': etag!,
  if (labels != null) 'labels': labels!,
  if (name != null) 'name': name!,
  if (restoreChannel != null) 'restoreChannel': restoreChannel!,
  if (restoreConfig != null) 'restoreConfig': restoreConfig!,
  if (state != null) 'state': state!,
  if (stateReason != null) 'stateReason': stateReason!,
  if (uid != null) 'uid': uid!,
  if (updateTime != null) 'updateTime': updateTime!,
};