mount method

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

Adds this element to the tree at the given parent.

Implementation

@override
void mount(Element? parent) {
  _state.initState();
  super.mount(parent);
}