merge method

Merges the theme data ListTableThemeData.

Implementation

ListTableThemeData merge(ListTableThemeData? other) {
  if (other == null) {
    return this;
  }
  return copyWith(
    iconThemeData: other.iconThemeData,
    itemHeight: other.itemHeight,
    textStyle: other.textStyle,
    selectedColor: other.selectedColor,
    selectedHighlightColor: other.selectedHighlightColor,
    selectedHoverColor: other.selectedHoverColor,
    hoverColor: other.hoverColor,
    highlightColor: other.highlightColor,
    background: other.background,
    borderColor: other.borderColor,
    borderHoverColor: other.borderHoverColor,
    borderHighlightColor: other.borderHighlightColor,
    borderIndicatorColor: other.borderIndicatorColor,
  );
}