registerFeatureValueInterceptor method

void registerFeatureValueInterceptor(
  1. bool allowLockOverride,
  2. FeatureValueInterceptor fvi
)

register an interceptor, indicating whether it is allowed to override the locking coming from the server

Implementation

void registerFeatureValueInterceptor(
    bool allowLockOverride, FeatureValueInterceptor fvi) {
  _featureValueInterceptors.add(_InterceptorHolder(allowLockOverride, fvi));
}