ClickableTextFormWidget constructor

const ClickableTextFormWidget({
  1. Key? key,
  2. String? labelText,
  3. TextEditingController? controller,
  4. String? validator(
    1. String?
    )?,
  5. VoidCallback? onPressed,
})

Implementation

const ClickableTextFormWidget({
  super.key,
  this.labelText,
  this.controller,
  this.validator,
  this.onPressed,
});