merge method

Merges one StreamMessageListViewThemeData with another.

Implementation

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