getPrompt method

  1. @override
String getPrompt()
override

Get the current prompt to display to the user

Implementation

@override
String getPrompt() {
  if (_waitingForAction) {
    return "action> ";
  }
  return "inspect_notifications> ";
}