CNotificationActionButton constructor
CNotificationActionButton({
- Key? key,
- required Widget child,
- required VoidCallback onTap,
- double? width,
- double? height,
Implementation
CNotificationActionButton({
Key? key,
required Widget child,
required VoidCallback onTap,
double? width,
double? height,
}) : props = CNotificationActionButtonProps(
child: child,
onTap: onTap,
width: width,
height: height,
),
super(key: key);