hintText method

DefineMTextFieldModifier hintText(
  1. String value
)

Implementation

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