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