operator | method

SlotEffect operator |(
  1. SlotEffect other
)

Combine effects using | operator

Implementation

SlotEffect operator |(SlotEffect other) =>
    SlotEffect._(_value | other._value);