childAdded method

  1. @override
void childAdded(
  1. Component child
)
inherited

Implementation

@override
void childAdded(Component child) {
  super.childAdded(child);
  if (child is ShapePaintMutator) {
    _changeMutator(child as ShapePaintMutator);
    if (shapePaintContainer != null) {
      _initMutator();
    }
  }
}