module ActionController::StrongParameters

def params=(value)

with the given `value` hash.
will create an ActionController::Parameters object that has been instantiated
Assigns the given `value` to the `params` hash. If `value` is a Hash, this
def params=(value)
  @_params = value.is_a?(Hash) ? Parameters.new(value) : value
end