copyWith method

InternalLinkTypeStory copyWith({
  1. String? storyPosterUsername,
  2. int? storyId,
})

Implementation

InternalLinkTypeStory copyWith({String? storyPosterUsername, int? storyId}) =>
    InternalLinkTypeStory(
      storyPosterUsername: storyPosterUsername ?? this.storyPosterUsername,
      storyId: storyId ?? this.storyId,
    );