attach method
Implementation
@override
void attach(ComponentRuntime runtime) {
final isFirstAttach = !attached;
super.attach(runtime);
if (isFirstAttach) {
_onMount();
}
}
@override
void attach(ComponentRuntime runtime) {
final isFirstAttach = !attached;
super.attach(runtime);
if (isFirstAttach) {
_onMount();
}
}