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