getPassword method

String? getPassword()

Get the user password. The value can be stored in parameters 'password' or 'pass'.

Return the user password.

Implementation

String? getPassword() {
  return super.getAsNullableString('password') ??
      super.getAsNullableString('pass');
}