HintText constructor

const HintText({
  1. Key? key,
  2. TextStyle? hintStyle,
  3. required String hintText,
  4. Color? hintColor,
  5. EdgeInsetsGeometry? hintPadding,
})

Implementation

const HintText({
  Key? key,
  this.hintStyle,
  required this.hintText,
  this.hintColor,
  this.hintPadding,
}) : super(key: key);