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