SentryEnvironment constructor

const SentryEnvironment({
  1. required String project,
  2. required String org,
  3. required String authToken,
  4. required String url,
  5. required String release,
  6. required String dist,
})

Implementation

const SentryEnvironment({
  required this.project,
  required this.org,
  required this.authToken,
  required this.url,
  required this.release,
  required this.dist,
});