hashCode property

  1. @override
int get hashCode
override

Necessary for == to work properly.

Implementation

@override
int get hashCode => Object.hash(
  artist,
  flavorText,
  const DeepCollectionEquality().hash(images),
  manaCost,
  name,
  oracleText,
  power,
  toughness,
  typeLine,
);