equals method

bool equals(
  1. RequestRange? another
)

Implementation

bool equals(RequestRange? another) {
  if (another == null) {
    return false;
  }
  return specified == another.specified && begin == another.begin && end == another.end && suffixLength == another.suffixLength;
}