hasLast property

bool get hasLast

Indicates whether the last value in the queue is a Future. Use isEmpty instead to check if the queue is empty.

Implementation

bool get hasLast => last is Future;