merge method

Merges one UserListViewThemeData with another.

Implementation

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