createNotification method
Future<bool>
createNotification({
- required NotificationContent content,
- NotificationSchedule? schedule,
- List<
NotificationActionButton> ? actionButtons,
override
LOCAL NOTIFICATION METHODS *********************************************
Creates a new notification.
If notification has no body or title, it will only be created, but never displayed. (background notification)
schedule and actionButtons are optional
Implementation
@override
Future<bool> createNotification(
{required NotificationContent content,
NotificationSchedule? schedule,
List<NotificationActionButton>? actionButtons}) async {
return false;
}