bottom8 static method

Border bottom8(
  1. Color color
)

Constructs a Border with a width of 8.0 for bottom direction

Implementation

static Border bottom8(Color color) {
  return Border(bottom: side8(color));
}