hintWeight method

TextField hintWeight(
  1. FontWeight weight
)

Implementation

TextField hintWeight(FontWeight weight) {
  var newStyle = TextStyle(fontWeight: weight);
  var mergeStyle = decoration?.hintStyle?.merge(newStyle) ?? newStyle;
  return copyWith(decoration: decoration?.copyWith(hintStyle: mergeStyle));
}