bottom4 static method

Border bottom4(
  1. Color color
)

Constructs a Border with a width of 4.0 for bottom direction

Implementation

static Border bottom4(Color color) {
  return Border(bottom: side4(color));
}