copyWith method
Implementation
AddProxy copyWith({
  String? server,
  int? port,
  bool? enable,
  ProxyType? type,
}) => AddProxy(
  server: server ?? this.server,
  port: port ?? this.port,
  enable: enable ?? this.enable,
  type: type ?? this.type,
);