Value constructor

Value(
  1. num data, {
  2. List<Value>? children,
  3. String op = "",
})

Implementation

Value(this.data, {List<Value>? children, this.op = ""}) {
  _prev = children != null ? children.toSet() : {};
}