There was an error while loading. Please reload this page.
1 parent 490dcb1 commit a99015bCopy full SHA for a99015b
example/aha_client_example.dart
@@ -30,7 +30,7 @@ class ExampleLoginManager extends LoginManager {
30
final username = stdin.readLineSync()!;
31
stdout.write('Password: ');
32
await stdout.flush();
33
- // stdin.echoMode = false;
+ stdin.echoMode = false;
34
final password = stdin.readLineSync()!;
35
stdin.echoMode = true;
36
return UserCredentials(username: username, password: password);
0 commit comments