isJoker property

bool isJoker

Is this card a joker?

Implementation

bool get isJoker {
  return (index >= Card.WhiteJoker.index && index <= Card.Joker.index);
}