copyWith method

AddProxy copyWith({
  1. Proxy? proxy,
  2. bool? enable,
  3. String? comment,
})

Implementation

AddProxy copyWith({Proxy? proxy, bool? enable, String? comment}) => AddProxy(
  proxy: proxy ?? this.proxy,
  enable: enable ?? this.enable,
  comment: comment ?? this.comment,
);