underlineBorder method
Implementation
DefineMTextFieldModifier underlineBorder(Color color) {
return this.copyWith(
decorationValue: (this.decorationValue ?? InputDecoration()).copyWith(
border: UnderlineInputBorder(borderSide: BorderSide(color: color)),
),
);
}