shapeStadium method
Implementation
Widget shapeStadium({Color? fillColor, Color? borderColor, BorderSide? side}) {
BorderSide? bs = side;
if (bs == null && borderColor != null) {
bs = BorderSide(color: borderColor);
}
return this.shapeDecorated(shape: StadiumBorder(side: bs ?? BorderSide.none), color: fillColor);
}