iconWithLabel method
Widget
iconWithLabel(
- BuildContext context, {
- Color? color,
- double fontSize = CustomFontSize.f16,
Implementation
Widget iconWithLabel(
BuildContext context, {
Color? color,
double fontSize = CustomFontSize.f16,
}) {
return Text(
this,
style: TextStyle(color: color, fontSize: fontSize),
);
}