borderEnd method
Sets the end border (RTL-aware).
Implementation
T borderEnd({
Color? color,
double? width,
BorderStyle? style,
double? strokeAlign,
}) {
return border(
BorderDirectionalMix.end(
BorderSideMix(
color: color,
strokeAlign: strokeAlign,
style: style,
width: width,
),
),
);
}