add method

void add(
  1. Renderer child
)
inherited

Implementation

void add(Renderer child) {
  assert(child._parent == null);
  orderList(_children, child, _getCompareValue);
  child
    .._parent = this
    ..tick()
    ..onMount();
}