copyWith method

InputStoryAreaTypeSuggestedReaction copyWith({
  1. ReactionType? reactionType,
  2. bool? isDark,
  3. bool? isFlipped,
})

Implementation

InputStoryAreaTypeSuggestedReaction copyWith({
  ReactionType? reactionType,
  bool? isDark,
  bool? isFlipped,
}) => InputStoryAreaTypeSuggestedReaction(
  reactionType: reactionType ?? this.reactionType,
  isDark: isDark ?? this.isDark,
  isFlipped: isFlipped ?? this.isFlipped,
);