copyWith method

SetDefaultReactionType copyWith({
  1. ReactionType? reactionType,
})

Implementation

SetDefaultReactionType copyWith({
  ReactionType? reactionType,
}) =>
    SetDefaultReactionType(
      reactionType: reactionType ?? this.reactionType,
    );