Computes a hash code inspecting deeply list.
list
int deepHashCodeList(List? list) { if (list == null) return 0; var h = 1; for (var e in list) { h ^= deepHashCode(e); } return h; }