copyWith method

GeneralFrameworkClientInvokeOptions copyWith({
  1. NetworkClientConnectionType? networkClientConnectionType,
  2. Duration? durationTimeOut,
  3. bool? isInvokeThrowOnError,
})

UncompleteDocumentation

Implementation

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