copyWith method

SentryTransactionInfo copyWith({
  1. String? source,
})

Implementation

SentryTransactionInfo copyWith({
  String? source,
}) {
  return SentryTransactionInfo(
    source ?? this.source,
  );
}