top8 static method

Border top8(
  1. Color color
)

Constructs a Border with a width of 8.0 for top direction

Implementation

static Border top8(Color color) {
  return Border(top: side8(color));
}