copyWith method

StoryRepostInfo copyWith({
  1. StoryOrigin? origin,
  2. bool? isContentModified,
})

Implementation

StoryRepostInfo copyWith({StoryOrigin? origin, bool? isContentModified}) =>
    StoryRepostInfo(
      origin: origin ?? this.origin,
      isContentModified: isContentModified ?? this.isContentModified,
    );