copyWith method
UncompleteDocumentation
Implementation
GeneralFrameworkClientInvokeOptions copyWith({
NetworkClientConnectionType? networkClientConnectionType,
Duration? durationTimeOut,
bool? isInvokeThrowOnError,
}) {
return GeneralFrameworkClientInvokeOptions(
networkClientConnectionType:
networkClientConnectionType ?? this.networkClientConnectionType,
durationTimeOut: durationTimeOut ?? this.durationTimeOut,
isInvokeThrowOnError: isInvokeThrowOnError ?? this.isInvokeThrowOnError,
);
}