copyWith method

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

Implementation

SentryRuntime copyWith({
  String? key,
  String? name,
  String? version,
  String? rawDescription,
}) =>
    SentryRuntime(
      key: key ?? this.key,
      name: name ?? this.name,
      version: version ?? this.version,
      rawDescription: rawDescription ?? this.rawDescription,
    );