copyWith method
Implementation
GetTrendingStickerSets copyWith({
StickerType? stickerType,
int? offset,
int? limit,
}) =>
GetTrendingStickerSets(
stickerType: stickerType ?? this.stickerType,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);