bottom0 static method

Border bottom0(
  1. Color color
)

Constructs a Border with a width of 0.0 for bottom direction

Implementation

static Border bottom0(Color color) {
  return Border(bottom: side0(color));
}