copyWith method

GetOwnedStickerSets copyWith({
  1. int? offsetStickerSetId,
  2. int? limit,
})

Implementation

GetOwnedStickerSets copyWith({int? offsetStickerSetId, int? limit}) =>
    GetOwnedStickerSets(
      offsetStickerSetId: offsetStickerSetId ?? this.offsetStickerSetId,
      limit: limit ?? this.limit,
    );