class Dry::Schema::Config

def method_missing(meth, *args, &block)

Other tags:
    Api: - private
def method_missing(meth, *args, &block)
  super unless config.respond_to?(meth)
  config.public_send(meth, *args)
end