bottom2 static method

Border bottom2(
  1. Color color
)

Constructs a Border with a width of 2.0 for bottom direction

Implementation

static Border bottom2(Color color) {
  return Border(bottom: side2(color));
}