copyWith method

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

Implementation

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