AuthorizationCredentialPassword constructor

const AuthorizationCredentialPassword({
  1. required String username,
  2. required String password,
})

Creates a new username/password combination, which is the result of a successful Keychain query.

Implementation

const AuthorizationCredentialPassword({
  required this.username,
  required this.password,
});