hasDiff method

dynamic hasDiff(
  1. LazyDataConfigs? other
)

Implementation

hasDiff(LazyDataConfigs? other) {
  return (keyMaxWidth != other?.keyMaxWidth &&
          other?.keyMaxWidth != null) ||
      (valueMaxWidth != other?.valueMaxWidth &&
          other?.valueMaxWidth != null) ||
      (iconSize != other?.iconSize && other?.iconSize != null) ||
      (indent != other?.indent && other?.indent != null);
}