copyWith method
Implementation
PubDevClientInvokeParameters copyWith(
{Map<dynamic, dynamic>? parameters,
String? urlPathScheme,
Map<String, dynamic>? urlQueryParameters,
String? userAgent,
bool? isThrowOnError,
Duration? durationTimeOut}) {
return PubDevClientInvokeParameters(
parameters: parameters ?? this.parameters,
urlPathScheme: urlPathScheme ?? this.urlPathScheme,
urlQueryParameters: urlQueryParameters ?? this.urlQueryParameters,
userAgent: userAgent ?? this.userAgent,
isThrowOnError: isThrowOnError ?? this.isThrowOnError,
durationTimeOut: durationTimeOut ?? this.durationTimeOut,
);
}