continueMaximally method

  1. @override
String continueMaximally()
Continue the story until the next choice point or until it runs out of content. This is as opposed to the Continue() method which only evaluates one line of output at a time.

Implementation

@override
String continueMaximally() {
  ifAsyncWeCant('ContinueMaximally');

  var sb = StringBuffer();

  while (canContinue) {
    sb.write(Continue());
  }

  return sb.toString();
}