borderRight method

T borderRight({
  1. Color? color,
  2. double? width,
  3. BorderStyle? style,
  4. double? strokeAlign,
})

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,
      ),
    ),
  );
}