AugmentedNotification constructor

AugmentedNotification({
  1. required String notificationId,
  2. String? title,
  3. String? body,
  4. Map<String, dynamic>? additionalData,
  5. String? launchUrl,
})

Implementation

AugmentedNotification(
    {required this.notificationId,
    this.title,
    this.body,
    this.additionalData,
    this.launchUrl});