callShow method
Implementation
@override
Node? callShow(Node? target) {
if (target is Element) {
target.hidden = false;
if (target.style.display == 'none') {
target.style.display = '';
}
if (target.style.visibility == 'hidden') {
target.style.visibility = '';
}
}
return target;
}