copyWith method
SentryProxy
copyWith({
- String? host,
- int? port,
- SentryProxyType? type,
- String? user,
- String? pass,
Implementation
SentryProxy copyWith({
String? host,
int? port,
SentryProxyType? type,
String? user,
String? pass,
}) =>
SentryProxy(
host: host ?? this.host,
port: port ?? this.port,
type: type ?? this.type,
user: user ?? this.user,
pass: pass ?? this.pass,
);