from method

LazyDataTheme from(
  1. LazyDataTheme? theme
)

Implementation

LazyDataTheme from(LazyDataTheme? theme) {
  return LazyDataTheme()
    ..intColor = theme?.intColor ?? intColor
    ..doubleColor = theme?.doubleColor ?? doubleColor
    ..boolColor = theme?.boolColor ?? boolColor
    ..stringColor = theme?.stringColor ?? stringColor
    ..keyColor = theme?.keyColor ?? keyColor
    ..nullColor = theme?.nullColor ?? nullColor
    ..quoteColor = theme?.quoteColor ?? quoteColor
    ..supportColor = theme?.supportColor ?? supportColor
    ..fontSize = theme?.fontSize ?? fontSize
    ..iconSize = theme?.iconSize ?? iconSize
    ..indent = theme?.indent ?? indent
    ..lineColor = theme?.lineColor ?? lineColor
    ..backgroundColor = theme?.backgroundColor ?? backgroundColor;
}