DatabaseEntity constructor

DatabaseEntity({
  1. DatabaseInstanceEntity? database,
  2. FunctionEntity? databaseFunction,
  3. PackageEntity? databasePackage,
  4. List<EntityDdl>? entityDdl,
  5. String? entityType,
  6. List<EntityIssue>? issues,
  7. List<EntityMapping>? mappings,
  8. MaterializedViewEntity? materializedView,
  9. String? parentEntity,
  10. SchemaEntity? schema,
  11. SequenceEntity? sequence,
  12. String? shortName,
  13. StoredProcedureEntity? storedProcedure,
  14. SynonymEntity? synonym,
  15. TableEntity? table,
  16. String? tree,
  17. UDTEntity? udt,
  18. ViewEntity? view,
})

Implementation

DatabaseEntity({
  this.database,
  this.databaseFunction,
  this.databasePackage,
  this.entityDdl,
  this.entityType,
  this.issues,
  this.mappings,
  this.materializedView,
  this.parentEntity,
  this.schema,
  this.sequence,
  this.shortName,
  this.storedProcedure,
  this.synonym,
  this.table,
  this.tree,
  this.udt,
  this.view,
});