operator | method

RequestType operator |(
  1. RequestType type
)

Implementation

RequestType operator |(RequestType type) {
  return RequestType(this.value | type.value);
}