isCard property

bool isCard

Is this an actual card (and not None or an invalid number)?

Implementation

bool get isCard {
  return index >= Card.WhiteJoker.index && index <= Card.AceOfSpades.index;
}