renderAppend method
Renders this component inside the element with ID parentId
, appended.
This also checks whether the parent exists.
Implementation
@nonVirtual
Future<void> renderAppend(Element parentElement) async {
await preRender();
parentElement.insertAdjacentElement('beforeEnd', baseInnerElement!);
await postRender();
}