sentry_talker 1.0.0+1 copy "sentry_talker: ^1.0.0+1" to clipboard
sentry_talker: ^1.0.0+1 copied to clipboard

An integration which adds support for recording log from the talker package.


Sentry integration for talker package #

package license pub likes popularity pub points
sentry_talker License: MIT pub package likes popularity pub points

Integration for the talker package.

Usage

  • Sign up for a Sentry.io account and get a DSN at https://sentry.io.

  • Follow the installing instructions on pub.dev.

  • Initialize the Sentry SDK using the DSN issued by Sentry.io and add the TalkerIntegration

import 'package:sentry/sentry.dart';
import 'package:sentry_talker/sentry_talker.dart';

Future<void> main() async {
  await Sentry.init(
    (options) {
      options.dsn = 'https://example@sentry.io/example';
      options.addIntegration(TalkerIntegration());
    },
    appRunner: initApp, // Init your App.
  );
}

void initApp() {
  // your app code
}
0
likes
160
points
0
downloads

Publisher

verified publisheregortabula.dev

Weekly Downloads

An integration which adds support for recording log from the talker package.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, sentry, talker

More

Packages that depend on sentry_talker