cardBannerButton method
Implementation
Widget cardBannerButton(
{Color buttonColor = Colors.red,
double buttonWidth = 150,
double buttonHeight = 30,
double rounded,
Function onTap}) {
return MaterialXButton(
color: buttonColor,
width: buttonWidth,
height: buttonHeight,
onTap: onTap,
rounded: rounded,
child: this,
);
}