Database constructor

Database({
  1. String? backupFile,
  2. String? backupSchedule,
  3. String? hostVm,
  4. String? name,
})

Implementation

Database({
  this.backupFile,
  this.backupSchedule,
  this.hostVm,
  this.name,
});