merge method

FilterOption merge(
  1. FilterOption other
)

Merge a FilterOption into another.

Implementation

FilterOption merge(FilterOption other) {
  return FilterOption(
    needTitle: other.needTitle,
    sizeConstraint: other.sizeConstraint,
    durationConstraint: other.durationConstraint,
  );
}