top0 static method

Border top0(
  1. Color color
)

Constructs a Border with a width of 0.0 for top direction

Implementation

static Border top0(Color color) {
  return Border(top: side0(color));
}