To put it simple:
How do i check if a StreamSubscription is canceled?
There is no
_myCustomSub.isCanceled
It seems you'd have to use one of two methods:
await
the future that signals that the StreamSubscription was canceled.Don't know of any other way.