PlatformNotificationResponse constructor

const PlatformNotificationResponse({
  1. required int? notificationId,
  2. required String? payload,
  3. required String? actionId,
  4. required String? input,
  5. required bool dismissed,
  6. required bool launchedApp,
  7. required bool fromBackground,
})

Implementation

const PlatformNotificationResponse({
  required this.notificationId,
  required this.payload,
  required this.actionId,
  required this.input,
  required this.dismissed,
  required this.launchedApp,
  required this.fromBackground,
});