pullRandomCard method

Flashcard pullRandomCard()

Remove um Flashcard aleatoriamente do deck e o retorna

Implementation

Flashcard pullRandomCard() {
  if (this.deck.lenght() == 0) {
    return null;
  }
  Flashcard card = this.deck.getRandomCard();
  this.deck.remove(card);
  return card;
}