Border.all constructor Null safety
- {Color color = const Color(0xFF000000),
- double width = 1.0,
- BorderStyle style = BorderStyle.solid}
A uniform border with all sides the same color and width.
The sides default to black solid borders, one logical pixel wide.
Implementation
factory Border.all({
Color color = const Color(0xFF000000),
double width = 1.0,
BorderStyle style = BorderStyle.solid,
}) {
final BorderSide side = BorderSide(color: color, width: width, style: style);
return Border.fromBorderSide(side);
}