UserNotificationVO constructor
const
UserNotificationVO({
- String? uid,
- DocumentSnapshot<
Object?> ? snapshot, - String? message,
- String? userId,
- String? from,
- ChannelData? channelData,
- NotificationState? state,
- List<
NotificationChannelType> ? channelTypes, - required DateTime createdAt,
- DateTime? updatedAt,
- DateTime? deliveredAt,
- DateTime? readAt,
- 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,
});