right10 static method

Border right10(
  1. Color color
)

Constructs a Border with a width of 10.0 for right direction

Implementation

static Border right10(Color color) {
  return Border(right: side10(color));
}