NiceToastItem constructor

NiceToastItem({
  1. required String id,
  2. required String message,
  3. NiceToastSeverity severity = NiceToastSeverity.info,
  4. String? title,
  5. Duration duration = const Duration(seconds: 4),
  6. IconData? icon,
})

Implementation

NiceToastItem({
  required this.id,
  required this.message,
  this.severity = NiceToastSeverity.info,
  this.title,
  this.duration = const Duration(seconds: 4),
  this.icon,
});