showNotification method

void showNotification(
  1. dynamic title
)

Show notification

Implementation

void showNotification(title) {
  AwesomeNotifications().createNotification(
      content: NotificationContent(
    id: Random().nextInt(1000),
    channelKey: keyNotificationChannelName,
    title: title,
  ));
}