Password.withTheme constructor

Password.withTheme({
  1. required Theme theme,
  2. required String prompt,
  3. bool confirmation = false,
  4. String? confirmPrompt,
  5. String? confirmError,
})

Constructs a Password component with the supplied theme.

Implementation

Password.withTheme({
  required this.theme,
  required this.prompt,
  this.confirmation = false,
  this.confirmPrompt,
  this.confirmError,
});