Backup constructor

Backup({
  1. required String backupId,
  2. BackupState? backupState,
  3. String? clusterId,
  4. DateTime? copyTimestamp,
  5. DateTime? createTimestamp,
  6. DateTime? deleteTimestamp,
  7. bool? neverExpires,
  8. String? sourceBackup,
  9. String? sourceCluster,
  10. String? sourceRegion,
  11. List<Tag>? tagList,
})

Implementation

Backup({
  required this.backupId,
  this.backupState,
  this.clusterId,
  this.copyTimestamp,
  this.createTimestamp,
  this.deleteTimestamp,
  this.neverExpires,
  this.sourceBackup,
  this.sourceCluster,
  this.sourceRegion,
  this.tagList,
});