currentText property

String? currentText

The latest line of text to be generated from a Continue() call.

Implementation

String? get currentText {
  ifAsyncWeCant("call currentText since it's a work in progress");
  return state.currentText;
}