show method

Future<void> show()

Shows the popover.

If shown is already true, calling this method brings the popover it controls to the top.

This method should typically not be called while the widget tree is being rebuilt.

Implementation

Future<void> show() async {
  _overlay.show();
  await _animation.forward();
  notifyListeners();
}