Dart Documentationchrome.downloadsHttpMethod

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

final String value #

inherited from ChromeEnum
final String value

Methods

String toString() #

inherited from ChromeEnum

Returns a string representation of this object.

docs inherited from Object
String toString() => value;