S360fNotificationCard constructor

const S360fNotificationCard({
  1. required String message,
  2. VoidCallback? onClosePressed,
  3. String title = '',
  4. MainAxisSize mainAxisSize = MainAxisSize.min,
  5. S360fWidgetColorVariant type = S360fWidgetColorVariant.info,
  6. Widget? actionButton,
  7. double elevation = 2.0,
  8. Key? key,
})

Implementation

const S360fNotificationCard({
  required this.message,
  this.onClosePressed,
  this.title = '',
  this.mainAxisSize = MainAxisSize.min,
  this.type = S360fWidgetColorVariant.info,
  this.actionButton,
  this.elevation = 2.0,
  super.key,
});