hintFontWeight method
Implementation
DefineMTextFieldModifier hintFontWeight(FontWeight value) {
return this.copyWith(
decorationValue: (this.decorationValue ?? InputDecoration()).copyWith(
hintStyle: (this.decorationValue?.hintStyle ?? TextStyle())
.copyWith(fontWeight: value)),
);
}