createTaskNotification method
Create an immediate notification for a task.
Implementation
@override
Future<void> createTaskNotification(UserTask task) async {
if (task.notification) {
await FlutterLocalNotificationsPlugin().show(
id: task.id.hashCode,
title: task.title,
body: task.description,
notificationDetails: _platformChannelSpecifics,
payload: task.id,
);
info('$runtimeType - Notification created for $task');
}
}