RequiredFlickerTextInput constructor

RequiredFlickerTextInput({
  1. Key? key,
  2. String? initialValue,
  3. String? labelText,
  4. bool uppercaseLabelAndHint = true,
  5. ValueChanged<String>? onChanged,
  6. Widget? suffix,
  7. Widget? prefix,
  8. bool readonly = false,
  9. double width = 250,
})

Implementation

RequiredFlickerTextInput({
  Key? key,
  this.initialValue,
  this.labelText,
  this.uppercaseLabelAndHint = true,
  this.onChanged,
  this.suffix,
  this.prefix,
  this.readonly = false,
  this.width = 250,
}) : super(key: key);