hintSize method
Implementation
TextField hintSize(double size) {
var newStyle = TextStyle(fontSize: size);
var mergeStyle = decoration?.hintStyle?.merge(newStyle) ?? newStyle;
return copyWith(decoration: decoration?.copyWith(hintStyle: mergeStyle));
}