XfdnIconNotification.error constructor

XfdnIconNotification.error(
  1. String text
)

Implementation

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