UserNotificationVO constructor

const UserNotificationVO({
  1. String? uid,
  2. DocumentSnapshot<Object?>? snapshot,
  3. String? message,
  4. String? userId,
  5. String? from,
  6. ChannelData? channelData,
  7. NotificationState? state,
  8. List<NotificationChannelType>? channelTypes,
  9. required DateTime createdAt,
  10. DateTime? updatedAt,
  11. DateTime? deliveredAt,
  12. DateTime? readAt,
  13. Map<String, dynamic>? metadata,
})

Implementation

const UserNotificationVO({
  this.uid,
  this.snapshot,
  this.message,
  this.userId,
  this.from,
  this.channelData,
  this.state,
  this.channelTypes,
  required this.createdAt,
  this.updatedAt,
  this.deliveredAt,
  this.readAt,
  this.metadata,
});