showNotification abstract method

Future<void> showNotification({
  1. required String title,
  2. required String message,
  3. String? channelId,
  4. int? notificationId,
})

Mostrar notificação simples

Implementation

Future<void> showNotification({
  required String title,
  required String message,
  String? channelId,
  int? notificationId,
});