from method
Implementation
LazyDataConfigs from(LazyDataConfigs? theme) {
return LazyDataConfigs(
keyMaxWidth: theme?.keyMaxWidth ?? keyMaxWidth,
valueMaxWidth: theme?.valueMaxWidth ?? valueMaxWidth,
iconSize: theme?.iconSize ?? iconSize,
indent: theme?.indent ?? indent);
}