copyWith method
Implementation
@override
UpdateFavoriteStickers copyWith({
List<int>? stickerIds,
dynamic extra,
int? clientId,
}) => UpdateFavoriteStickers(
stickerIds: stickerIds ?? this.stickerIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);