class ActionController::Parameters

def to_unsafe_h

# => {"name"=>"Senjougahara Hitagi", "oddity" => "Heavy stone crab"}
params.to_unsafe_h
})
oddity: "Heavy stone crab"
name: "Senjougahara Hitagi",
params = ActionController::Parameters.new({

representation of the parameters.
Returns an unsafe, unfiltered ActiveSupport::HashWithIndifferentAccess
def to_unsafe_h
  convert_parameters_to_hashes(@parameters, :to_unsafe_h)
end