LocalNotificationCallback constructor

const LocalNotificationCallback({
  1. required void clickNotificationCallback(
    1. String notificationType
    ),
  2. required void lockScreenNotificationShow(),
})

Implementation

const LocalNotificationCallback({
  required this.clickNotificationCallback,
  required this.lockScreenNotificationShow,
});