copyWith method

StoryAreaTypeSuggestedReaction copyWith({
  1. ReactionType? reactionType,
  2. int? totalCount,
  3. bool? isDark,
  4. 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,
);