hintStyle method

DefineMTextFieldModifier hintStyle(
  1. TextStyle value
)

Implementation

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