merge method

Merges one ChannelListViewThemeData with another.

Implementation

ChannelListViewThemeData merge(ChannelListViewThemeData? other) {
  if (other == null) return this;
  return copyWith(
    backgroundColor: other.backgroundColor,
  );
}