copyWith method

UpdateInstalledStickerSets copyWith({
  1. StickerType? stickerType,
  2. List<int>? stickerSetIds,
})

Implementation

UpdateInstalledStickerSets copyWith({
  StickerType? stickerType,
  List<int>? stickerSetIds,
}) => UpdateInstalledStickerSets(
  stickerType: stickerType ?? this.stickerType,
  stickerSetIds: stickerSetIds ?? this.stickerSetIds,
);