TableInfo constructor

TableInfo({
  1. String? name,
  2. String? tblName,
  3. int? rootPage,
  4. String? type,
  5. String? sql,
  6. List<ColumnInfo>? columns,
})

Implementation

TableInfo({
  this.name,
  this.tblName,
  this.rootPage,
  this.type,
  this.sql,
  this.columns,
});