In the Deck Builder, initialize the 52 cards (along with the 4 jokers, which should be called “wild” and the suit is “wild”).
private final List<Carta> Deck;
public Baralho() {
listaCartas = new ArrayList<>();
String[] naipes = {"club", "spade", "heart", "diamond"};
int pos = 0;
Carta c;
with this code we will be able to create the Deck, initialize the 52 cards together with the 4 jokers.
Learn more about Deck in https://brainly.com/question/1660537