http_method_enum 0.0.2
http_method_enum: ^0.0.2 copied to clipboard
Minimal enum for common application HTTP methods (GET, HEAD, POST, PUT, PATCH, DELETE). For API contracts and REST semantics, not full IANA method coverage.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add http_method_enumWith Flutter:
$ flutter pub add http_method_enumThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
http_method_enum: ^0.0.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:http_method_enum/http_method_enum.dart';