operator | method

bool operator |(
  1. bool other
)

Performs a logical OR operation between the Rx value and other.

Implementation

bool operator |(bool other) => other || value;