Node constructor

Node({
  1. bool tLeaf = true,
})

Implementation

Node({bool tLeaf = true}) {
  leaf = tLeaf;
}