operator | method

ReactiveFlags operator |(
  1. ReactiveFlags other
)

Bitwise OR keeping the ReactiveFlags type. / OR bitwise mantendo o tipo ReactiveFlags.

Implementation

@pragma('vm:prefer-inline')
@pragma('dart2js:tryInline')
@pragma('wasm:prefer-inline')
ReactiveFlags operator |(ReactiveFlags other) =>
    ReactiveFlags._(_raw | other._raw);