HelperText constructor

const HelperText({
  1. Key? key,
  2. bool shown = true,
  3. String helperText = "",
})

Implementation

const HelperText({
  super.key,
  this.shown = true,
  this.helperText = "",
});