copyWith method

  1. @override
ProxyTypeHttp copyWith({
  1. String? username,
  2. String? password,
  3. bool? httpOnly,
})
override

Implementation

@override
ProxyTypeHttp copyWith({
  String? username,
  String? password,
  bool? httpOnly,
}) => ProxyTypeHttp(
  username: username ?? this.username,
  password: password ?? this.password,
  httpOnly: httpOnly ?? this.httpOnly,
);