NotificationEnvelope constructor

const NotificationEnvelope({
  1. required String id,
  2. required String topicType,
  3. required String notificationType,
  4. required Map<String, dynamic> topic,
  5. required Object notification,
})

Implementation

const NotificationEnvelope({
  required this.id,
  required this.topicType,
  required this.notificationType,
  required this.topic,
  required this.notification,
});