PostStory constructor

PostStory({
  1. required int chatId,
  2. InputStoryContent? content,
  3. InputStoryAreas? areas,
  4. FormattedText? caption,
  5. StoryPrivacySettings? privacySettings,
  6. required List<int> albumIds,
  7. required int activePeriod,
  8. StoryFullId? fromStoryFullId,
  9. required bool isPostedToChatPage,
  10. required bool protectContent,
})

Implementation

PostStory({
  required this.chatId,
  this.content,
  this.areas,
  this.caption,
  this.privacySettings,
  required this.albumIds,
  required this.activePeriod,
  this.fromStoryFullId,
  required this.isPostedToChatPage,
  required this.protectContent,
});