BaseButtonIcon constructor
const
BaseButtonIcon({
- Key? key,
- double size = 18,
- required String icon,
- double width = 30,
- double height = 30,
- bool? disabled,
- Border? border,
- List<
BoxShadow> ? boxShadow, - Color? background,
- BoxConstraints? constraints,
- BorderRadius? borderRadius,
- bool isPrimary = false,
- bool isSolid = false,
- VoidCallback? onPressed,
Implementation
const BaseButtonIcon({
super.key,
this.size = 18,
required this.icon,
this.width = 30,
this.height = 30,
this.disabled,
this.border,
this.boxShadow,
this.background,
this.constraints,
this.borderRadius,
this.isPrimary = false,
this.isSolid = false,
this.onPressed,
});