createSimpleNotification method

  1. @override
Future<bool> createSimpleNotification({
  1. required String title,
  2. required String text,
})
override

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;
}