XfdnIconNotification.warning constructor

XfdnIconNotification.warning(
  1. String text
)

Implementation

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