Skip to content
This repository was archived by the owner on Oct 5, 2024. It is now read-only.

Latest commit

 

History

History

README.md

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());
  });
}