copyWith method

InvokeParametersLlamaLibraryDataOptions copyWith({
  1. Duration? invokeTimeOut,
  2. bool? isThrowOnError,
})

General Library Documentation Undocument By General Corporation & Global Corporation & General Developer

Implementation

InvokeParametersLlamaLibraryDataOptions copyWith({
  Duration? invokeTimeOut,
  bool? isThrowOnError,
}) {
  return InvokeParametersLlamaLibraryDataOptions(
    invokeTimeOut: invokeTimeOut ?? this.invokeTimeOut,
    isThrowOnError: isThrowOnError ?? this.isThrowOnError,
  );
}