copyWith method

SetSupergroupCustomEmojiStickerSet copyWith({
  1. int? supergroupId,
  2. int? customEmojiStickerSetId,
})

Implementation

SetSupergroupCustomEmojiStickerSet copyWith({
  int? supergroupId,
  int? customEmojiStickerSetId,
}) => SetSupergroupCustomEmojiStickerSet(
  supergroupId: supergroupId ?? this.supergroupId,
  customEmojiStickerSetId:
      customEmojiStickerSetId ?? this.customEmojiStickerSetId,
);