lastAwaitResult property

Object? lastAwaitResult
getter/setter pair

The result value from the most recently completed Future (from await).

Note this is the most recent result, not "the result of the await site being resumed" — those coincide only when a statement contains a single await. For per-site replay use resolvedAwaitResults; this slot remains the completion value the state machine falls back to.

Implementation

Object? lastAwaitResult;