stop<T> static method

InterceptorResult<T> stop<T>([
  1. T? value
])

Stops the interceptor chain. If no value is provided, the current value is returned (no changes).

Implementation

static InterceptorResult<T> stop<T>([T? value]) =>
    InterceptorStopResult(value);