password static method

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

Implementation

static Future<String> password(String scope, String key) async {
  Show.pleaseEnter("PLEASE ENTER", scope, "PASSWORD", "FOR", key);
  var password = await prompt('PASSWORD', hideInput: true);
  return password;
}