NotificationBody constructor

NotificationBody({
  1. String? title,
  2. String? description,
  3. String? photoUrl,
  4. String? userId,
  5. List<String>? products,
  6. List<String>? categories,
  7. List<String>? campaigns,
  8. String? storeId,
})

Implementation

NotificationBody({
  this.title,
  this.description,
  this.photoUrl,
  this.userId,
  this.products,
  this.categories,
  this.campaigns,
  this.storeId,
});