setSensitiveDataRedactionEnabled static method

Future<void> setSensitiveDataRedactionEnabled(
  1. bool enabled
)

Sets if automatic sensitive data redaction is enabled.

Implementation

static Future<void> setSensitiveDataRedactionEnabled(bool enabled) async {
  await _channel.invokeMethod('setSensitiveDataRedactionEnabled', {
    'enabled': enabled,
  });
}