HintText constructor

HintText(
  1. String text, {
  2. Color? color,
  3. FontWeight? fontWeight,
  4. double? fontSize,
  5. TextStyle? style,
})

Implementation

HintText(
    String text, {
      Color? color,
      FontWeight? fontWeight,
      double? fontSize,
      TextStyle? style
    }) : super(
    text,
    color: color??ZEColor.Primary[shade]!,
    fontWeight: fontWeight??style?.fontWeight,
    fontSize: fontSize??style?.fontSize??para1.fontSize
);