customUnderlineInputBorder static method
dynamic
customUnderlineInputBorder({
- Color color = SharingColors.grey,
- double? width,
- BorderStyle style = BorderStyle.solid,
Implementation
static customUnderlineInputBorder({
Color color = SharingColors.grey,
double? width,
BorderStyle style = BorderStyle.solid,
}) {
return UnderlineInputBorder(
borderSide: BorderSide(
color: color,
width: Sizes.WIDTH_1,
style: style,
),
);
}