isRight property

bool isRight

Returns true if this is a right, false otherwise.

Implementation

bool get isRight => fold((_) => false, (_) => true);