TableMeta constructor

TableMeta({
  1. required String name,
  2. required Schema schema,
  3. int rootPageId = -1,
  4. int rowCount = 0,
  5. Map<String, int>? indexes,
})

Implementation

TableMeta({
  required this.name,
  required this.schema,
  this.rootPageId = -1,
  this.rowCount = 0,
  Map<String, int>? indexes,
}) : indexes = indexes ?? {};