SessionReplayMaskingScope constructor

const SessionReplayMaskingScope({
  1. required MaskingConfig maskingConfig,
  2. required Widget child,
  3. Key? key,
})

Creates a widget which applies maskingConfig to its descendants

Implementation

const SessionReplayMaskingScope({
  required this.maskingConfig,
  required this.child,
  Key? key,
}) : super(key: key);