NotificationDTO constructor
NotificationDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- String? title,
- String? description,
- String? photoUrl,
- String? oneSignalId,
- ProfileDTO? user,
- List<
ProductDTO> ? products, - List<
CategoryDTO> ? categories, - List<
CampaignDTO> ? campaigns,
Implementation
NotificationDTO({
super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
this.title,
this.description,
this.photoUrl,
this.oneSignalId,
this.user,
this.products,
this.categories,
this.campaigns,
});