SentryRuntime constructor

const SentryRuntime({
  1. String? key,
  2. String? name,
  3. String? version,
  4. String? compiler,
  5. String? rawDescription,
  6. String? build,
})

Implementation

const SentryRuntime({
  this.key,
  this.name,
  this.version,
  this.compiler,
  this.rawDescription,
  this.build,
}) : assert(key == null || key.length >= 1);