BlueItemFormField constructor

BlueItemFormField({
  1. Key? key,
  2. String? label,
  3. String? hint,
  4. bool? showHint,
  5. String? initialValue,
  6. bool? obscureText,
  7. dynamic onChanged(
    1. String
    )?,
})

Implementation

BlueItemFormField({
  Key? key,
  this.label,
  this.hint,
  this.showHint,
  this.initialValue,
  this.obscureText,
  this.onChanged,
}) : super(key: key);