DatabaseSchema constructor

DatabaseSchema({
  1. MySqlSchemaDetails? mysql,
  2. List<DatabaseObjects>? objects,
  3. PostgreSqlSchemaDetails? postgresql,
  4. String? schemaName,
  5. SqlServerSchemaDetails? sqlServer,
  6. String? tablesSizeBytes,
})

Implementation

DatabaseSchema({
  this.mysql,
  this.objects,
  this.postgresql,
  this.schemaName,
  this.sqlServer,
  this.tablesSizeBytes,
});