copyWith method

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

Implementation

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