patchWith method

GeneralLibraryLog

Implementation

GeneralLibraryLogOptions patchWith({
  GeneralLibraryLogOptions? logOptions,
}) {
  if (logOptions != null) {
    return copyWith(
      textTitle: valueStringSetIfEmptReturnNull(value: logOptions.textTitle),
      textContext:
          valueStringSetIfEmptReturnNull(value: logOptions.textContext),
    );
  }
  return this;
}