copyWith method

SetSupergroupStickerSet copyWith({
  1. int? supergroupId,
  2. int? stickerSetId,
})

Implementation

SetSupergroupStickerSet copyWith({int? supergroupId, int? stickerSetId}) =>
    SetSupergroupStickerSet(
      supergroupId: supergroupId ?? this.supergroupId,
      stickerSetId: stickerSetId ?? this.stickerSetId,
    );