MyIconNotification.error constructor

MyIconNotification.error(
  1. 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),
  );
}