merge method

Implementation

ServerAllowOrigins merge(ServerAllowOrigins other) {
  return ServerAllowOrigins(
    origins: {...origins, ...other.origins},
    inherit: other.inherit & inherit,
  );
}