input static method

Future<String> input(
  1. String scope,
  2. String key
)

Implementation

static Future<String> input(String scope, String key) async {
  Show.pleaseEnter("INPUT", scope, key);
  var input = await prompt('INPUT');
  return input;
}