root method

Tree root(
  1. Object? label
)

Implementation

Tree root(Object? label) {
  _value = label?.toString() ?? '';
  return this;
}