copyWith method

Body copyWith({
  1. Iterable<Breadcrumb>? telemetry,
  2. Report? report,
})

Implementation

Body copyWith({
  Iterable<Breadcrumb>? telemetry,
  Report? report,
}) =>
    Body(
        telemetry: telemetry ?? this.telemetry,
        report: report ?? this.report);