copyWith method

HttpUrl copyWith({
  1. String? url,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

HttpUrl copyWith({
  String? url,
  dynamic extra,
  int? clientId,
}) => HttpUrl(
  url: url ?? this.url,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);