copyWith method
Implementation
AddedProxy copyWith({
int? id,
int? lastUsedDate,
bool? isEnabled,
String? comment,
Proxy? proxy,
}) => AddedProxy(
id: id ?? this.id,
lastUsedDate: lastUsedDate ?? this.lastUsedDate,
isEnabled: isEnabled ?? this.isEnabled,
comment: comment ?? this.comment,
proxy: proxy ?? this.proxy,
);