mutators property

  1. @BuiltValueField(wireName: r'mutators')
BuiltList<RuleHandler>? mutators

Mutators is a list of mutation handlers that transform the HTTP request. A common use case is generating a new set of credentials (e.g. JWT) which then will be forwarded to the upstream server. Mutations are performed iteratively from index 0 to n and should all succeed in order for the HTTP request to be forwarded.

Implementation

@BuiltValueField(wireName: r'mutators')
BuiltList<RuleHandler>? get mutators;