Continue method

  1. @override
String? Continue()

Continue the story for one line of content, if possible. If you're not sure if there's more content available, for example if you want to check whether you're at a choice point or at the end of the story, you should call before calling this function.

Implementation

@override
String? Continue() {
  _logger.info('Continue');
  continueAsync(0);
  return currentText;
}