SFNotification constructor

const SFNotification({
  1. Key? key,
  2. required String message,
  3. required Color iconColor,
  4. String? title,
  5. IconData icon = Icons.check_circle,
  6. VoidCallback? onClose,
})

Implementation

const SFNotification({
  super.key,
  required this.message,
  required this.iconColor,
  this.title,
  this.icon = Icons.check_circle,
  this.onClose,
});