copyWith method

SetMessageReactions copyWith({
  1. int? chatId,
  2. int? messageId,
  3. List<ReactionType>? reactionTypes,
  4. bool? isBig,
})

Implementation

SetMessageReactions copyWith({
  int? chatId,
  int? messageId,
  List<ReactionType>? reactionTypes,
  bool? isBig,
}) => SetMessageReactions(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  reactionTypes: reactionTypes ?? this.reactionTypes,
  isBig: isBig ?? this.isBig,
);