remove method

  1. @mustCallSuper
void remove()

Removes this layer from its parent layer's child list.

This has no effect if the layer's parent is already null.

Implementation

@mustCallSuper
void remove() {
  assert(!_debugMutationsLocked);
  parent?._removeChild(this);
}