MobPushLocalNotification constructor
MobPushLocalNotification({
- int? notificationId,
- dynamic title,
- dynamic content,
- dynamic timestamp,
- dynamic subTitle,
- dynamic sound,
- dynamic badge,
- dynamic styleContent,
- dynamic messageId,
- dynamic inboxStyleContent,
- dynamic style,
- dynamic channel,
- dynamic extrasMap,
- dynamic voice,
- dynamic shake,
- 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);