flutter_rollbar_reporting 0.0.3 copy "flutter_rollbar_reporting: ^0.0.3" to clipboard
flutter_rollbar_reporting: ^0.0.3 copied to clipboard

Rollbar reporting for flutter

Flutter Rollbar #

About #

Rollbar reporting for flutter

Usage #

import 'package:flutter_rollbar_reporting/flutter_rollbar_reporting.dart';

Rollbar()
    ..accessToken = '<post_client_item token>'
    ..environment = 'local'
    ..person = RollbarPerson(id: '3', username: 'A Real Person');

Rollbar().addTelemetry(
    RollbarTelemetry(
        level: RollbarLogLevel.INFO,
        type: RollbarTelemetryType.LOG,
        message: 'Counter: $_counter',
    ),
);

Rollbar().publishReport(message: 'A Report');