Skip to content

Latest commit

 

History

History
 
 

http_methods

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

List of Registered HTTP Methods

This package provides a list of all registered HTTP methods, as well as whether a method is considers safe, that is, specified in HTTP 1.1.

Disclaimer: This is not an officially supported Google product.

Example

import 'package:http_methods/http_methods.dart';

void main() {
  assert(isHttpMethod('get'));
  assert(isHttpMethod('GET'));
  assert(isHttpMethod('PUT'));
  assert(!isHttpMethod('not-a-method'));

  print('all http methods:');
  for (String method in httpMethods) {
    print(method);
  }
}

See Also