iconWithLabel method

Widget iconWithLabel(
  1. BuildContext context, {
  2. Color? color,
  3. double fontSize = CustomFontSize.f16,
})

Implementation

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