excludedRequestMethods property

List<RequestMethod>? get excludedRequestMethods

List of request methods which the rule won't match. Only one of requestMethods and excludedRequestMethods should be specified. If neither of them is specified, all request methods are matched.

Implementation

List<RequestMethod>? get excludedRequestMethods =>
    _wrapped.excludedRequestMethods?.toDart
        .cast<$js.RequestMethod>()
        .map((e) => RequestMethod.fromJS(e))
        .toList();
set excludedRequestMethods (List<RequestMethod>? v)

Implementation

set excludedRequestMethods(List<RequestMethod>? v) {
  _wrapped.excludedRequestMethods = v?.toJSArray((e) => e.toJS);
}