Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 949 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 949 Bytes

pub Build Status codecov documentation

The Dart library for sending data to the Sentry server.

Usage in browser:

var client = new SentryClientBrowser(
  SentryDsn.fromString('https://[email protected]/1')
);

client.write(new SentryPacket());

Usage on server:

var client = new SentryClientServer(
  SentryDsn.fromString('https://[email protected]/1')
);

client.write(new SentryPacket());