runScopedConfig<T> static method

T runScopedConfig<T>(
  1. ConvertConfig overrides,
  2. T body()
)

Runs body with overrides applied on top of the current effective config.

Implementation

static T runScopedConfig<T>(ConvertConfig overrides, T Function() body) =>
    ConvertConfig.runScoped(overrides, body);