boardBox method
Implementation
Widget boardBox(
{double iconSize = 20,
double radius = 0,
double boardWidth = 2,
Color color = Colors.blue}) {
return this
.iconWhite(
size: iconSize,
)
.box(cornerRadius: radius, color: color)
.pad(all: boardWidth)
.box(cornerRadius: radius, color: color.oppositeHSV)
.aspect(1);
}