PlNotificationMessage constructor

PlNotificationMessage({
  1. Widget? title,
  2. required Duration duration,
  3. Widget? icon,
  4. Widget? subtitle,
  5. required Widget builder(
    1. PlNotificationMessage
    )?,
})

Implementation

PlNotificationMessage({
  this.title,
  required this.duration,
  this.icon,
  this.subtitle,
  required this.builder,
});