hintColor method

TextField hintColor(
  1. Color color
)

Implementation

TextField hintColor(Color color) {
  var newStyle = TextStyle(color: color);
  var mergeStyle = decoration?.hintStyle?.merge(newStyle) ?? newStyle;
  return copyWith(decoration: decoration?.copyWith(hintStyle: mergeStyle));
}