asyncContinueComplete property

bool asyncContinueComplete
If ContinueAsync was called (with milliseconds limit > 0) then this property will return false if the ink evaluation isn't yet finished, and you need to call it again in order for the Continue to fully complete.

Implementation

bool get asyncContinueComplete {
  return !_asyncContinueActive;
}