mount method

  1. @override
void mount(
  1. Element? parent
)
override

Implementation

@override
void mount(Element? parent) {
  super.mount(parent);
  final childWidget = (widget as ParentDataWidget).child;
  _child = updateChild(null, childWidget);
  _applyParentData();
}