silentOptions function

ContainerOptions silentOptions({
  1. int? maxResolveConcurrency,
})

Convenience builder for ContainerOptions with noopErrorHandler and no logger.

Implementation

ContainerOptions silentOptions({int? maxResolveConcurrency}) {
  return ContainerOptions(
    errorHandler: noopErrorHandler,
    maxResolveConcurrency: maxResolveConcurrency,
  );
}