rm method

FutureOr<HttpClientResponse> rm(
  1. Protocol protocol,
  2. int externalPort
)

Implementation

FutureOr<HttpClientResponse> rm(Protocol protocol, int externalPort) {
  return get('DeletePortMapping',
      """<NewRemoteHost></NewRemoteHost><NewExternalPort>$externalPort</NewExternalPort><NewProtocol>${protocol.name}</NewProtocol>""");
}