compareTo method
Compares using instanceTime.
Implementation
@override
int compareTo(HttpResponse other) {
return instanceTime < other.instanceTime
? -1
: (instanceTime == other.instanceTime ? 0 : 1);
}
Compares using instanceTime.
@override
int compareTo(HttpResponse other) {
return instanceTime < other.instanceTime
? -1
: (instanceTime == other.instanceTime ? 0 : 1);
}