equals method

bool equals(
  1. LexoRankBucket other
)

Implementation

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