RawBlueItemFormField constructor

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

Implementation

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