Stories constructor

Stories({
  1. String? storyId,
  2. DateTime? date,
  3. List<StoryData>? file,
  4. String? previewImage,
  5. Map<String, String>? previewTitle,
})

Implementation

Stories({
  this.storyId,
  this.date,
  this.file,
  this.previewImage,
  this.previewTitle,
});