Sentinel enum

An enum of all available sentinels.

Inheritance

Constructors

Sentinel({required String value, required String encoded})
const

Values

iso → const Sentinel

This is what browsers will submit when the ✓ character occurs in an application/x-www-form-urlencoded body and the encoding of the page containing the form is iso-8859-1, or when the submitted form has an accept-charset attribute of iso-8859-1. Presumably also with other charsets that do not contain the ✓ character, such as us-ascii.

const Sentinel(value: r'✓', encoded: r'utf8=%26%2310003%3B')
charset → const Sentinel

These are the percent-encoded utf-8 octets representing a checkmark, indicating that the request actually is utf-8 encoded.

const Sentinel(value: r'✓', encoded: r'utf8=%E2%9C%93')

Properties

encoded String
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<Sentinel>
A constant List of the values in this enum, in order of their declaration.