inspect method
Implementation
FutureResult<S, F> inspect(FutureOr<void> Function(S ok) fn) {
return then((result) => result.inspect(fn));
}
FutureResult<S, F> inspect(FutureOr<void> Function(S ok) fn) {
return then((result) => result.inspect(fn));
}