copyWith method
Implementation
EditProxy copyWith({
int? proxyId,
Proxy? proxy,
bool? enable,
String? comment,
}) => EditProxy(
proxyId: proxyId ?? this.proxyId,
proxy: proxy ?? this.proxy,
enable: enable ?? this.enable,
comment: comment ?? this.comment,
);