hasDiff method
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);
}