SqliteTableData constructor

SqliteTableData(
  1. String _tableName, {
  2. String? createSql,
  3. int rootpage = 0,
  4. String? name,
  5. String? type,
  6. required List<SqliteTableColumData> columnData,
})

Implementation

SqliteTableData(this._tableName,
    {this.createSql,
    this.rootpage = 0,
    this.name,
    this.type,
    required this.columnData});