children method

Tree children(
  1. List items
)

Implementation

Tree children(List<dynamic> items) {
  for (final it in items) {
    child(it);
  }
  return this;
}