BugsnagNotifier constructor

BugsnagNotifier(
  1. String _apiKey, {
  2. String releaseStage = 'production',
})

Creates a new bugsnag reporter with your Bugsnag API key and releaseState which defults to production.

new BugsnagNotifier('YOUR_BUGSNAG_API_KEY')

Implementation

BugsnagNotifier(this._apiKey, {String releaseStage = 'production'}) {
  this._releaseStage = releaseStage;
}