copyWith method

TestProxy copyWith({
  1. Proxy? proxy,
  2. int? dcId,
  3. double? timeout,
})

Implementation

TestProxy copyWith({Proxy? proxy, int? dcId, double? timeout}) => TestProxy(
  proxy: proxy ?? this.proxy,
  dcId: dcId ?? this.dcId,
  timeout: timeout ?? this.timeout,
);