ItemFormField constructor

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

Implementation

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