copyWith method

EditProxy copyWith({
  1. int? proxyId,
  2. Proxy? proxy,
  3. bool? enable,
  4. String? comment,
})

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