left10 static method

Border left10(
  1. Color color
)

Constructs a Border with a width of 10.0 for left direction

Implementation

static Border left10(Color color) {
  return Border(left: side10(color));
}