The equality operator.
@override bool operator ==(Object other) { if (other is! Reference) { return false; } return other.id == id; }