borderHorizontal method
Sets horizontal borders (left & right).
Implementation
T borderHorizontal({
Color? color,
double? width,
BorderStyle? style,
double? strokeAlign,
}) {
final side = BorderSideMix(
color: color,
strokeAlign: strokeAlign,
style: style,
width: width,
);
return border(BorderMix.horizontal(side));
}