copyWith method
Implementation
TestProxy copyWith({
String? server,
int? port,
ProxyType? type,
int? dcId,
double? timeout,
}) => TestProxy(
server: server ?? this.server,
port: port ?? this.port,
type: type ?? this.type,
dcId: dcId ?? this.dcId,
timeout: timeout ?? this.timeout,
);