hintFamily method
Implementation
TextField hintFamily(String family) {
var newStyle = TextStyle(fontFamily: family);
var mergeStyle = decoration?.hintStyle?.merge(newStyle) ?? newStyle;
return copyWith(decoration: decoration?.copyWith(hintStyle: mergeStyle));
}