ControlledText constructor

const ControlledText({
  1. Key? key,
  2. TextEditingCController? controller,
  3. String? label,
  4. IconData? suffixIcon,
  5. void onSuffixIconTab(
    1. TextEditingCController txt
    )?,
})

Implementation

const ControlledText({
  super.key,
  this.controller,
  this.label,
  this.suffixIcon,
  this.onSuffixIconTab,
});