enableIOSNotifications method

dynamic enableIOSNotifications()

Implementation

enableIOSNotifications() async {
  await FirebaseMessaging.instance.setForegroundNotificationPresentationOptions(
      alert: true, // Required to display a heads up notification
      badge: true,
      sound: true);
}