copyWith method

StoryInteractionTypeView copyWith({
  1. ReactionType? chosenReactionType,
})

Implementation

StoryInteractionTypeView copyWith({ReactionType? chosenReactionType}) =>
    StoryInteractionTypeView(
      chosenReactionType: chosenReactionType ?? this.chosenReactionType,
    );