string public baseUri; // if this is public people would be able to see the entire collection so I suggest turning this into private
// create a function that shows the base URI once the revealed has been set to true
function showBaseUri() public view returns(string memory){
if(revealed == false){
return "";
}
return baseURI;
}