hasDiff method

dynamic hasDiff(
  1. LazyDataConfigs? other
)

Implementation

hasDiff(LazyDataConfigs? other) {
  return (this.maxKeyWidth != other?.maxKeyWidth &&
          other?.maxKeyWidth != null) ||
      (this.maxValueWidth != other?.maxValueWidth &&
          other?.maxValueWidth != null) ||
      (this.iconSize != other?.iconSize && other?.iconSize != null) ||
      (this.indent != other?.indent && other?.indent != null);
}