xCardTileTitle method
- {Color color = Colors.white,
- double fontsize = 20,
- FontWeight fontWeight = FontWeight.bold}
Implementation
Widget xCardTileTitle(
{Color color = Colors.white,
double fontsize = 20,
FontWeight fontWeight = FontWeight.bold}) {
return Textmaterial(
text: this,
color: color,
fontsize: fontsize,
fontWeight: fontWeight,
);
}