class Protocol::HTTP::Header::Priority

def initialize(value = nil)

@parameter value [String | Nil] the value of the priority header, if any. The value should be a comma-separated string of directives.

Initialize the priority header with the given value.
def initialize(value = nil)
	super(value&.downcase)
end