Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.03 KB

README.md

File metadata and controls

25 lines (16 loc) · 1.03 KB

Sentry Connectivity

pub package likes popularity pub points

Features

This package adds breadcrumbs for network changes to Sentry.

Getting started

Add this package to the pubspec.yaml file. Follow the instructions from connectivity_plus (which is used by this library under the hood) if needed.

Usage

import 'package:sentry_connectivity/sentry_connectivity.dart';
import 'package:sentry_flutter/sentry_flutter.dart';

void main() {
  SentryFlutter.init((options) {
    options.addIntegration(ConnectivityIntegration());
  });
}