BaseButtonCard constructor
const
BaseButtonCard({
- Key? key,
- String? icon,
- required String text,
- String? description,
- Color? color,
- Border? border,
- EdgeInsets? padding,
- bool isDanger = false,
- VoidCallback? onPressed,
Implementation
const BaseButtonCard({
super.key,
this.icon,
required this.text,
this.description,
this.color,
this.border,
this.padding,
this.isDanger = false,
this.onPressed,
});