UiButton.icon constructor
UiButton.icon({})
Implementation
factory UiButton.icon({
Key? key,
required Widget icon,
required VoidCallback? onPressed,
Color? foregroundColor,
double splashRadius = 24,
String? tooltip,
}) {
return UiButton._internal(
key: key,
icon: icon,
onPressed: onPressed,
tooltip: tooltip,
type: _UiButtonType.icon,
style: IconButton.styleFrom(foregroundColor: foregroundColor ?? primary),
);
}