redactHTTPQuery static method

Future<void> redactHTTPQuery({
  1. required List<String> regex,
})

Provide a List of String with regular expressions to redact values from the captured http query Example: "passwor(t|d)" to redact the password or passwort parameter

Default: We redact all query values matching the parameter: key, secret, password (also myKey or Password)

  • Parameters:
    • regex: List of String that is used for the redaction

Implementation

static Future<void> redactHTTPQuery({required List<String> regex}) async {
  await _channel.invokeMethod(
      'redactHTTPQuery', <String, dynamic>{'redactHTTPQueryRegEx': regex});
}