Message constructor
Message({
- required String messageId,
- String? title,
- String? body,
- String? sound,
- bool? silent,
- Map<
String, dynamic> ? customPayload, - String? internalData,
- num? receivedTimestamp,
- num? seenDate,
- String? contentUrl,
- bool? seen,
- bool? geo,
- Map<
String, dynamic> ? originalPayload, - bool? vibrate,
- String? icon,
- String? category,
- String? browserUrl,
- String? deeplink,
- String? webViewUrl,
- String? inAppOpenTitle,
- String? inAppDismissTitle,
- bool? chat,
Implementation
Message({
required this.messageId,
this.title,
this.body,
this.sound,
this.silent,
this.customPayload,
this.internalData,
this.receivedTimestamp,
this.seenDate,
this.contentUrl,
this.seen,
this.geo,
this.originalPayload,
this.vibrate,
this.icon,
this.category,
this.browserUrl,
this.deeplink,
this.webViewUrl,
this.inAppOpenTitle,
this.inAppDismissTitle,
this.chat,
});