BoxBorder.all constructor

BoxBorder.all({
  1. Color color,
  2. double width,
  3. BorderStyle style,
  4. double strokeAlign,
})

A uniform Border with all sides the same color and width.

The sides default to black solid borders, one logical pixel wide.

Implementation

factory BoxBorder.all({Color color, double width, BorderStyle style, double strokeAlign}) =
    Border.all;