operator | method

WindowStyleMask operator |(
  1. WindowStyleMask value
)

Implementation

WindowStyleMask operator |(WindowStyleMask value) =>
    WindowStyleMask._internal(
      value.toValue() | _value,
      value.toNativeValue() != null && _nativeValue != null
          ? value.toNativeValue()! | _nativeValue!
          : null,
    );