copyWith method

  1. @override
InternalLinkTypeProxy copyWith({
  1. String? server,
  2. int? port,
  3. ProxyType? type,
  4. dynamic extra,
  5. int? clientId,
})
override

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,
);