Skip to content

Data Collection Desensitization

If you wish to perform full desensitization on a field, it is recommended to use dataModifier, which offers better performance. For detailed rule-based replacement, lineDataModifier is recommended.

Do not use complex or high-latency methods within callback functions, as this will significantly impact the SDK's data writing performance.

await FTMobileFlutter.sdkConfig(
  dataModifier: {"device_uuid": "xxx"},
  lineDataModifier: {
    "view": {"view_name": "xxx"},
  },
);