SendStory constructor

const SendStory({
  1. required InputStoryContent content,
  2. FormattedText? caption,
  3. required StoryPrivacySettings privacySettings,
  4. required int activePeriod,
  5. required bool isPinned,
  6. required bool protectContent,
})

Sends a new story. Returns a temporary story with identifier 0

Implementation

const SendStory({
  required this.content,
  this.caption,
  required this.privacySettings,
  required this.activePeriod,
  required this.isPinned,
  required this.protectContent,
});