borderRight method
Sets the right border.
Implementation
T borderRight({
Color? color,
double? width,
BorderStyle? style,
double? strokeAlign,
}) {
return border(
BorderMix.right(
BorderSideMix(
color: color,
strokeAlign: strokeAlign,
style: style,
width: width,
),
),
);
}