MyIconNotification.warning constructor

MyIconNotification.warning(
  1. String text
)

Implementation

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