copyWith method
Implementation
@override
InternalLinkTypeProxy copyWith({
String? server,
int? port,
ProxyType? type,
dynamic extra,
int? clientId,
}) =>
InternalLinkTypeProxy(
server: server ?? this.server,
port: port ?? this.port,
type: type ?? this.type,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);