API Reference 0.3.24dart_web_toolkit_httpMethod

Method class

HTTP request method constants.

class Method {
 final String _name;

 Method(this._name);

 String toString() {
   return _name;
 }
}

Constructors

new Method(String _name) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
Method(this._name);

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() {
 return _name;
}