Database constructor

Database({
  1. String? charset,
  2. String? collation,
  3. String? etag,
  4. String? instance,
  5. String? kind,
  6. String? name,
  7. String? project,
  8. String? selfLink,
  9. SqlServerDatabaseDetails? sqlserverDatabaseDetails,
})

Implementation

Database({
  this.charset,
  this.collation,
  this.etag,
  this.instance,
  this.kind,
  this.name,
  this.project,
  this.selfLink,
  this.sqlserverDatabaseDetails,
});