updateNotification method
Update notification
Implementation
Future<void> updateNotification({
required String notificationId,
String? title,
String? message,
String? image,
List<NotificationAttachment>? attachments,
List<NotificationAction>? actions,
String? deepLink,
NotificationStyle? style,
Map<String, dynamic>? data,
bool? isTemplate,
DateTime? scheduledTime,
String? timezone,
}) async {
await _platform.updateNotification(
notificationId: notificationId,
title: title,
message: message,
image: image,
attachments: attachments,
actions: actions,
deepLink: deepLink,
style: style,
data: data,
isTemplate: isTemplate,
scheduledTime: scheduledTime,
timezone: timezone,
);
}