operator + method

RecOptions operator +(
  1. RecOptions other
)

Implementation

RecOptions operator +(RecOptions other) {
  return RecOptions({...this.value, ...other.value});
}