copyWith method
Implementation
@override
ProxyTypeHttp copyWith({
String? username,
String? password,
bool? httpOnly,
}) => ProxyTypeHttp(
username: username ?? this.username,
password: password ?? this.password,
httpOnly: httpOnly ?? this.httpOnly,
);