FERANotification constructor

const FERANotification({
  1. Key? key,
  2. required String title,
  3. required String bodyText,
  4. required TypeOfNotification typeOfNotification,
  5. required Duration duration,
})

Implementation

const FERANotification(
    {super.key,
    required this.title,
    required this.bodyText,
    required this.typeOfNotification,
    required this.duration});