Database constructor

Database({
  1. String? displayName,
  2. List<String>? grantees,
  3. String? name,
  4. String? query,
  5. String? userName,
  6. String? version,
})

Implementation

Database({
  this.displayName,
  this.grantees,
  this.name,
  this.query,
  this.userName,
  this.version,
});