NUIInterceptor constructor

NUIInterceptor({
  1. required String interceptedUrl,
  2. String? interceptedPathVariables,
  3. Map<String, String>? interceptedHeaders,
  4. Map<String, String>? interceptedParams,
  5. dynamic interceptedBody,
  6. String? interceptedBodyString,
  7. NUIEnt? interceptedBodyEnt,
  8. bool stopIntercepting = false,
  9. bool noIntercepting = true,
})

Implementation

NUIInterceptor({
  required this.interceptedUrl,
  this.interceptedPathVariables,
  this.interceptedHeaders,
  this.interceptedParams,
  this.interceptedBody,
  this.interceptedBodyString,
  this.interceptedBodyEnt,
  this.stopIntercepting = false,
  this.noIntercepting = true
});