Input constructor

Input({
  1. required String prompt,
  2. bool validator(
    1. String
    )?,
  3. String initialText = '',
  4. String? defaultValue,
})

Constructs an Input component with the default theme.

Implementation

Input({
  required this.prompt,
  this.validator,
  this.initialText = '',
  this.defaultValue,
}) : theme = Theme.defaultTheme;