XfdnIconNotification.success constructor

XfdnIconNotification.success(
  1. String text
)

Implementation

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