left2 static method

Border left2(
  1. Color color
)

Constructs a Border with a width of 2.0 for left direction

Implementation

static Border left2(Color color) {
  return Border(left: side2(color));
}