closed property

Future<Object?> get closed

Completes when the flight finalizes (landed or aborted), with the result of the close that landed it - the overlay counterpart of awaiting showDialog. A dismissal (scrim tap, Esc, back) closes with null; in route mode the value passed to Navigator.pop rides here too.

Implementation

Future<Object?> get closed => _closedCompleter.future;