equals method
Implementation
bool equals(LexoRankBucket other) {
if (identical(this, other)) {
return true;
}
// if (!other) {
// return false;
//}
return value.equals(other.value);
}
bool equals(LexoRankBucket other) {
if (identical(this, other)) {
return true;
}
// if (!other) {
// return false;
//}
return value.equals(other.value);
}