copyWith method
- @Deprecated('Assign values directly to the instance.')
- String? host,
- int? port,
- SentryProxyType? type,
- String? user,
- String? pass,
Implementation
@Deprecated('Assign values directly to the instance.')
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,
);