HttpMethod class
class HttpMethod extends ChromeEnum { static const HttpMethod GET = const HttpMethod._('GET'); static const HttpMethod POST = const HttpMethod._('POST'); static const List<HttpMethod> VALUES = const[GET, POST]; const HttpMethod._(String str): super(str); }
Extends
ChromeEnum > HttpMethod
Static Properties
const HttpMethod GET #
static const HttpMethod GET = const HttpMethod._('GET')
const HttpMethod POST #
static const HttpMethod POST = const HttpMethod._('POST')
const List<HttpMethod> VALUES #
static const List<HttpMethod> VALUES = const[GET, POST]
Properties
Methods
String toString() #
inherited from ChromeEnum
Returns a string representation of this object.
docs inherited from Object
String toString() => value;