diffEquals method

  1. @override
bool diffEquals(
  1. dynamic other
)
inherited

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