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