isShowing property

  1. @override
bool get isShowing
override

Implementation

@override
bool get isShowing {
  return rootParent!.contains(content) &&
      !content!.hidden &&
      content!.style.display != 'none' &&
      content!.style.visibility != 'hidden';
}