bugsnag / bugsnag-flutter

BugSnag crash reporting for Flutter apps
https://docs.bugsnag.com/platforms/flutter/
MIT License
11 stars 11 forks source link

Telemetry API change #207

Closed 0HyperCube closed 1 year ago

0HyperCube commented 1 year ago

Goal

Improve disabling only one telemetry option

Design

To disable only one telemetry type, the following code can be used:

await bugsnag.start(
    telemetry: const BugsnagTelemetryTypes(internalErrors: false));

Testing

Add test to ensure that only the correct telemetry types are set.