hintFamily method

TextField hintFamily(
  1. String family
)

Implementation

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