validMethods constant

List<String> const validMethods

List of valid HTTP methods.

Implementation

static const List<String> validMethods = [
  'GET',
  'POST',
  'PUT',
  'PATCH',
  'DELETE',
];