RawItemFormField constructor

RawItemFormField({
  1. Key? key,
  2. String? label,
  3. IconData? icon,
  4. String? hint,
  5. bool? showHint,
  6. bool enableMargins = true,
  7. required TextEditingController? controller,
  8. String? initialValue,
})

Implementation

RawItemFormField(
    {Key? key,
    this.label,
    this.icon,
    this.hint,
    this.showHint,
    this.enableMargins = true,
    required this.controller,
    this.initialValue})
    : super(key: key);