CommonTextFormField constructor

const CommonTextFormField({
  1. Key? key,
  2. TextEditingController? controller,
  3. void onChanged(
    1. String
    )?,
  4. String? hintText,
})

Implementation

const CommonTextFormField({
  super.key,
  this.controller,
  this.onChanged,
  this.hintText,
});