MyIconNotification.success constructor

MyIconNotification.success(
  1. String text
)

Implementation

factory MyIconNotification.success(String text) {
  return MyIconNotification(
    iconData: Icons.check_circle,
    text: text,
    iconColor: Colors.green,
    backgroundColor: Colors.green.withValues(alpha: 0.2),
  );
}