hintFontWeight method

DefineMTextFieldModifier hintFontWeight(
  1. FontWeight value
)

Implementation

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