BTreeNode constructor

BTreeNode({
  1. required int order,
  2. bool isLeaf = true,
})

Implementation

BTreeNode({required this.order, this.isLeaf = true});