isOkAnd returns true if Results represents an ok result and the additional code of f returns true.
bool isOkAnd(bool Function(T) f) => isOk() ? f(_value as T) : false;