top4 static method

Border top4(
  1. Color color
)

Constructs a Border with a width of 4.0 for top direction

Implementation

static Border top4(Color color) {
  return Border(top: side4(color));
}