merge method

Merges one MessageListViewThemeData with another.

Implementation

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