position property

Offset? get position

Gets the explicit position offset.

Implementation

Offset? get position => _position;
set position (Offset? value)

Sets the popover position.

Updates the explicit position and triggers a rebuild.

Implementation

set position(Offset? value) {
  if (_position != value) {
    setState(() {
      _position = value;
    });
  }
}