HintText constructor

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

Implementation

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