toIconLabel method
Implementation
Widget toIconLabel({
Function(dynamic)? onTap,
double? size,
Color? color,
bool? showRipple,
Color? rippleColor,
}) {
return CyberLabel(
text: this,
isIcon: true,
iconSize: size,
textcolor: color,
onLeaver: onTap,
showRipple: showRipple,
rippleColor: rippleColor,
);
}