copyWith method

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

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,
    );