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