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