hintFontSize method

DefineMTextFieldModifier hintFontSize(
  1. double? value
)

Implementation

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