bar method
Implementation
Widget bar(
{Color color = Colors.blue,
Color textColor = Colors.white,
double fontSize = 14,
double radius = 4}) {
return TextBar(
this,
color: color,
textColor: textColor,
fontSize: fontSize,
radius: radius,
);
}