diffEquals method
Implementation
@override
bool diffEquals(dynamic other) {
if (other == null)
_log.warning(
"null value found during diff. Source is ${this.runtimeType}");
if (other is DiffDelegate) {
return diffSource == other.diffSource;
}
return false;
}