MyIconNotification.error constructor
MyIconNotification.error(
- String text
Implementation
factory MyIconNotification.error(String text) {
return MyIconNotification(
iconData: Icons.error,
text: text,
iconColor: Colors.red,
backgroundColor: Colors.red.withValues(alpha: 0.2),
);
}