SentryRuntime constructor

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

Implementation

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