widgetShowText static method
Implementation
static Widget widgetShowText(
String text, dynamic textSize, dynamic textColor) {
return Text(
'$text',
style: TextStyle(
color: (textColor == '') ? Colors.white70 : textColor,
fontSize: textSize == '' ? 14.0 : textSize),
);
}