Method class
HTTP request method constants.
class Method { final String _name; Method(this._name); String toString() { return _name; } }
Constructors
Methods
String toString() #
Returns a string representation of this object.
docs inherited from Object
String toString() { return _name; }