top10 static method

Border top10(
  1. Color color
)

Constructs a Border with a width of 10.0 for top direction

Implementation

static Border top10(Color color) {
  return Border(top: side10(color));
}