hintFontSize method
Implementation
DefineMTextFieldModifier hintFontSize(double? value) {
return this.copyWith(
decorationValue: (this.decorationValue ?? InputDecoration()).copyWith(
hintStyle: (this.decorationValue?.hintStyle ?? TextStyle())
.copyWith(fontSize: value)),
);
}