EditStory constructor

const EditStory({
  1. required int storyId,
  2. InputStoryContent? content,
  3. FormattedText? caption,
})

Changes content and caption of a previously sent story

Implementation

const EditStory({
  required this.storyId,
  this.content,
  this.caption,
});