copyWith method

ChatEventStickerSetChanged copyWith({
  1. int? oldStickerSetId,
  2. int? newStickerSetId,
})

Implementation

ChatEventStickerSetChanged copyWith({
  int? oldStickerSetId,
  int? newStickerSetId,
}) => ChatEventStickerSetChanged(
  oldStickerSetId: oldStickerSetId ?? this.oldStickerSetId,
  newStickerSetId: newStickerSetId ?? this.newStickerSetId,
);