diffIdentical method

  1. @override
bool diffIdentical(
  1. dynamic other
)
override

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;
}