isOkAnd method

  1. @override
bool isOkAnd(
  1. bool fn(
    1. S
    )
)
override

Returns true if the result is Ok and the value inside of it matches a predicate.

Implementation

@override
@pragma("vm:prefer-inline")
bool isOkAnd(bool Function(S) fn) => false;