SensitiveFieldMatcher constructor

SensitiveFieldMatcher({
  1. Set<String>? extraKeys,
})

Creates a matcher with optional extraKeys to extend the defaults.

Implementation

SensitiveFieldMatcher({Set<String>? extraKeys})
    : keys = _defaultSensitiveKeys.union(extraKeys ?? const {});