SecurityEngine constructor

SecurityEngine({
  1. required List<SecurityLayer> layers,
  2. LayerObserver? onLayerResult,
})

Creates an engine that runs requests through layers in order.

Implementation

SecurityEngine({
  required this.layers,
  this.onLayerResult,
});