boxDecoration function
Implementation
BoxDecoration boxDecoration({
double radius = defaultRadius,
double borderWidth = defaultBorderWidth,
Color color = Colors.red,
}) =>
BoxDecoration(
border: Border.all(color: color, width: borderWidth),
borderRadius: borderRadius(radius),
color: Colors.transparent,
);