pill static method
Pill/Badge shape decoration with radFull.
Implementation
static BoxDecoration pill({
required Color color,
Color? borderColor,
double borderWidth = 1.0,
}) {
return BoxDecoration(
color: color,
borderRadius: Dimensions.radFull,
border: borderColor != null
? Border.all(color: borderColor, width: borderWidth)
: null,
);
}