MobPushLocalNotification constructor

MobPushLocalNotification({
  1. int? notificationId,
  2. dynamic title,
  3. dynamic content,
  4. dynamic timestamp,
  5. dynamic subTitle,
  6. dynamic sound,
  7. dynamic badge,
  8. dynamic styleContent,
  9. dynamic messageId,
  10. dynamic inboxStyleContent,
  11. dynamic style,
  12. dynamic channel,
  13. dynamic extrasMap,
  14. dynamic voice,
  15. dynamic shake,
  16. dynamic light,
})

Implementation

MobPushLocalNotification(
    {this.notificationId,
    title,
    content,
    timestamp,
    subTitle,
    sound,
    badge,
    styleContent,
    messageId,
    inboxStyleContent,
    style,
    channel,
    extrasMap,
    voice,
    shake,
    light})
    : super(
          title: title,
          content: content,
          timestamp: timestamp,
          subTitle: subTitle,
          sound: sound,
          badge: badge,
          styleContent: styleContent,
          messageId: messageId,
          inboxStyleContent: inboxStyleContent,
          style: style,
          channel: channel,
          extrasMap: extrasMap,
          voice: voice,
          shake: shake,
          light: light);