PushNotificationError constructor

const PushNotificationError({
  1. required String message,
  2. String? code,
  3. NotificationData? originalData,
})

Push notification error state

Implementation

const PushNotificationError({
  required this.message,
  this.code,
  this.originalData,
});