LocalNotification constructor

LocalNotification({
  1. int? id,
  2. Color? color,
  3. IconData? icon,
  4. String? title,
  5. String? description,
  6. Widget? child,
  7. Duration? duration,
  8. Function? onTap,
  9. LocalNotificationType? type,
})

Implementation

LocalNotification({
  this.id,
  this.color,
  this.icon,
  this.title,
  this.description,
  this.child,
  this.duration,
  this.onTap,
  this.type,
});