add method

void add(
  1. T value
)

Adds a new item to the manager.

Implementation

void add(T value) => _children.add(value);