createSimpleNotification method
Implementation
@override
Future<bool> createSimpleNotification({
required String title,
required String text,
}) async {
if (is_support_desktop_notification) {
// await notifications_client_desktop.notify(
// title,
// body: text,
// );
}
return false;
}