Story constructor

Story({
  1. int? layout,
  2. String? urlImage,
  3. List<StoryContent>? contents,
})

Implementation

Story({
  this.layout,
  this.urlImage,
  this.contents,
});