BackupScheduleConfig constructor

const BackupScheduleConfig({
  1. required String cron,
  2. required BackupScope scope,
  3. required List<BackupStorageTarget> storageTargets,
  4. int retentionDays = 30,
  5. bool enabled = true,
  6. String? label,
  7. List<String> notifyEmails = const [],
})

Implementation

const BackupScheduleConfig({
  required this.cron,
  required this.scope,
  required this.storageTargets,
  this.retentionDays = 30,
  this.enabled = true,
  this.label,
  this.notifyEmails = const [],
});