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