prompt function

Future<String?>? prompt([
  1. Object? message
])

Prompt for a string.

Implementation

Future<String?>? prompt([Object? message]) {
  //return menuManager.prompt(message);
  return menuPresenter.prompt(message);
}