prompt static method

String? prompt(
  1. String message
)

Implementation

static String? prompt(String message) {
  stdout.write("$message ");
  return stdin.readLineSync();
}