copyWith method

UpdateTrendingStickerSets copyWith({
  1. StickerType? stickerType,
  2. TrendingStickerSets? stickerSets,
})

Implementation

UpdateTrendingStickerSets copyWith({
  StickerType? stickerType,
  TrendingStickerSets? stickerSets,
}) => UpdateTrendingStickerSets(
  stickerType: stickerType ?? this.stickerType,
  stickerSets: stickerSets ?? this.stickerSets,
);