next<T> static method

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

Continues to the next interceptor. If no value is provided, the current value is returned (no changes).

Implementation

static InterceptorResult<T> next<T>([T? value]) =>
    InterceptorNextResult(value);