bottom10 static method

Border bottom10(
  1. Color color
)

Constructs a Border with a width of 10.0 for bottom direction

Implementation

static Border bottom10(Color color) {
  return Border(bottom: side10(color));
}