bugsnag / bugsnag-flutter

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

Telemetry API change #207

Closed 0HyperCube closed 11 months 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.