copyWith method
Implementation
SentryRuntime copyWith({
String? key,
String? name,
String? version,
String? compiler,
String? rawDescription,
String? build,
}) =>
SentryRuntime(
key: key ?? this.key,
name: name ?? this.name,
version: version ?? this.version,
compiler: compiler ?? this.compiler,
rawDescription: rawDescription ?? this.rawDescription,
build: build ?? this.build,
unknown: unknown,
);