operator & method

ReactiveFlags operator &(
  1. ReactiveFlags other
)

Bitwise AND keeping the ReactiveFlags type. / AND 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);