Backup constructor

Backup({
  1. String? createTime,
  2. String? database,
  3. String? databaseDialect,
  4. EncryptionInfo? encryptionInfo,
  5. String? expireTime,
  6. String? maxExpireTime,
  7. String? name,
  8. List<String>? referencingBackups,
  9. List<String>? referencingDatabases,
  10. String? sizeBytes,
  11. String? state,
  12. String? versionTime,
})

Implementation

Backup({
  this.createTime,
  this.database,
  this.databaseDialect,
  this.encryptionInfo,
  this.expireTime,
  this.maxExpireTime,
  this.name,
  this.referencingBackups,
  this.referencingDatabases,
  this.sizeBytes,
  this.state,
  this.versionTime,
});