border method
VxBox
border({
- Color color = Colors.black,
- double width = 1.0,
- BorderStyle style = BorderStyle.solid,
Bordering Sets the border of the Box.
Implementation
VxBox border(
{Color color = Colors.black,
double width = 1.0,
BorderStyle style = BorderStyle.solid}) {
_border = Border.all(color: color, width: width, style: style);
return this;
}