operator & method

bool operator &(
  1. bool other
)

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

Implementation

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