top6 static method

Border top6(
  1. Color color
)

Constructs a Border with a width of 6.0 for top direction

Implementation

static Border top6(Color color) {
  return Border(top: side6(color));
}