inspect method

  1. @override
Result<T, E> inspect(
  1. void onOk(
    1. T
    )
)
override

Implementation

@override
Result<T, E> inspect(void Function(T) onOk) {
  onOk(value);
  return this;
}