getPassword method

String? getPassword(
  1. String key
)

Retrieves a password for the given key. Passwords are loaded from the config/passwords.yaml file.

Implementation

String? getPassword(String key) {
  return _passwords[key];
}