copyWith method

  1. @override
ChatAvailableReactionsSome copyWith({
  1. List<ReactionType>? reactions,
})
override

Implementation

@override
ChatAvailableReactionsSome copyWith({
  List<ReactionType>? reactions,
}) =>
    ChatAvailableReactionsSome(
      reactions: reactions ?? this.reactions,
    );