DbSchema constructor

DbSchema([
  1. Set<DbTable>? tables
])

Provide a set of DbTable

Implementation

DbSchema([this.tables]) {
  tables ??= <DbTable>{};
}