right2 static method

Border right2(
  1. Color color
)

Constructs a Border with a width of 2.0 for right direction

Implementation

static Border right2(Color color) {
  return Border(right: side2(color));
}