Database constructor

Database({
  1. String? createTime,
  2. String? databaseDialect,
  3. String? defaultLeader,
  4. String? earliestVersionTime,
  5. bool? enableDropProtection,
  6. EncryptionConfig? encryptionConfig,
  7. List<EncryptionInfo>? encryptionInfo,
  8. String? name,
  9. bool? reconciling,
  10. RestoreInfo? restoreInfo,
  11. String? state,
  12. String? versionRetentionPeriod,
})

Implementation

Database({
  this.createTime,
  this.databaseDialect,
  this.defaultLeader,
  this.earliestVersionTime,
  this.enableDropProtection,
  this.encryptionConfig,
  this.encryptionInfo,
  this.name,
  this.reconciling,
  this.restoreInfo,
  this.state,
  this.versionRetentionPeriod,
});