underlineInputBorder static method
Underline border for input fields.
Implementation
static UnderlineInputBorder underlineInputBorder({
Color borderColor = Colors.grey,
double borderWidth = 1,
}) {
return UnderlineInputBorder(
borderSide: BorderSide(color: borderColor, width: borderWidth),
);
}