createNotificationFromJsonData abstract method
Creates a new notification based on a map that is similar to the map
produced by the toMap()
method of a NotificationModel object.
The mapData
parameter is a Map that represents the model of the
notification, including the content, schedule, buttons, and localizations.
This method returns a Future that resolves to true
if the notification
was successfully created, or false
if an error occurred.
This method is typically used to recreate a notification from data that was
previously saved or transmitted in a different format, such as JSON.
To use this method, you must first create a Map of the notification data,
using a format that is similar to the output of the toMap()
method of a
NotificationModel object. Then, pass this map to the
createNotificationFromJsonData()
method to create the notification.
Implementation
Future<bool> createNotificationFromJsonData(Map<String, dynamic> mapData);