toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (cluster != null) 'cluster': cluster!,
  if (clusterUid != null) 'clusterUid': clusterUid!,
  if (createTime != null) 'createTime': createTime!,
  if (kmsKey != null) 'kmsKey': kmsKey!,
  if (lastBackupTime != null) 'lastBackupTime': lastBackupTime!,
  if (name != null) 'name': name!,
  if (totalBackupCount != null) 'totalBackupCount': totalBackupCount!,
  if (totalBackupSizeBytes != null)
    'totalBackupSizeBytes': totalBackupSizeBytes!,
  if (uid != null) 'uid': uid!,
};