showNativeNotification abstract method

Future<void> showNativeNotification(
  1. String title,
  2. String body, {
  3. String? icon,
  4. bool sound = false,
})

Show a native OS notification.

Implementation

Future<void> showNativeNotification(
  String title,
  String body, {
  String? icon,
  bool sound = false,
});