exists method

  1. @override
bool exists(
  1. bool predicate(
    1. R r
    )
)
override

Return the result of calliing predicate with the value of Either if it is a Right. Otherwise return false.

Implementation

@override
bool exists(bool Function(R r) predicate) => false;