HintWidget constructor

const HintWidget({
  1. Key? key,
  2. required String text,
  3. GestureTapCallback? onTap,
  4. bool isError = false,
})

Implementation

const HintWidget({
  super.key,
  required this.text,
  this.onTap,
  this.isError = false,
});