copyWith method

ProxyRequest copyWith({
  1. String? path,
  2. Map<String, String>? headers,
})

Создает экземпляр с заданными параметрами

Implementation

ProxyRequest copyWith({
  String? path,
  Map<String, String>? headers,
}) {
  return ProxyRequest(
    path: path ?? this.path,
    headers: headers ?? this.headers,
  );
}