ifOk method
Performs a side-effect with the contained value if this is an Ok.
Implementation
@override
@pragma('vm:prefer-inline')
Err<T> ifOk(@noFuturesAllowed void Function(Ok<T> ok) noFuturesAllowed) {
return this;
}
Performs a side-effect with the contained value if this is an Ok.
@override
@pragma('vm:prefer-inline')
Err<T> ifOk(@noFuturesAllowed void Function(Ok<T> ok) noFuturesAllowed) {
return this;
}