Table constructor

Table({
  1. required TableMeta meta,
  2. required PageCache cache,
  3. required Map<String, BTree> indexes,
  4. required String indexDir,
})

Implementation

Table({
  required this.meta,
  required this.cache,
  required this.indexes,
  required this.indexDir,
});