LeanIconButton constructor
LeanIconButton({})
Implementation
LeanIconButton({this.tooltipMessage,
super.key,
required IconData iconData,
super.height,
super.color,
this.showToolTipAfter,
required super.onPressed,
Color? iconColorOverride})
: super(
child: LeanIcon(
icon: iconData,
iconColor: iconColorOverride ?? AppThemeAccess.theme.onPrimary,
));