DbSchema class

The database schema representation

Constructors

DbSchema([Set<DbTable>? tables])
Provide a set of DbTable

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
tables Set<DbTable>?
The tables in the database
getter/setter pair

Methods

describe() → void
print a description of the schema
hasTable(String name) bool
Check if a DbTable is present in the schema from it's name
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
table(String? name) DbTable?
Get a DbTable in the schema from it's name
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited