bottom6 static method

Border bottom6(
  1. Color color
)

Constructs a Border with a width of 6.0 for bottom direction

Implementation

static Border bottom6(Color color) {
  return Border(bottom: side6(color));
}