CredentialsPadlockDialog constructor

const CredentialsPadlockDialog({
  1. Key? key,
  2. required EscapeGame escapeGame,
  3. required CredentialsPadlock padlock,
  4. String? usernameText = 'Username',
  5. String? passwordText = 'Password',
})

Creates a new CredentialsPadlockDialog instance.

Implementation

const CredentialsPadlockDialog({
  super.key,
  required super.escapeGame,
  required super.padlock,
  this.usernameText = 'Username',
  this.passwordText = 'Password',
});