Database constructor

Database({
  1. String? createTime,
  2. String? deleteTime,
  3. String? expireTime,
  4. HiveDatabaseOptions? hiveOptions,
  5. String? name,
  6. String? type,
  7. String? updateTime,
})

Implementation

Database({
  this.createTime,
  this.deleteTime,
  this.expireTime,
  this.hiveOptions,
  this.name,
  this.type,
  this.updateTime,
});