method property
      
      HttpMethod?
      get
      method
      
    
    
The HTTP method to use if the URL uses the HTTPS protocol.
Implementation
HttpMethod? get method => _wrapped.method?.let(HttpMethod.fromJS);
      
      set
      method
      (HttpMethod? v) 
      
    
    
    
Implementation
set method(HttpMethod? v) {
  _wrapped.method = v?.toJS;
}