merge method

Merges one MessageSearchListViewThemeData with another.

Implementation

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