clear abstract method

Future<void> clear({
  1. int publicPort = 443,
  2. String path = '/',
})

Removes a Funnel publication for publicPort and path.

Idempotent: clearing an absent mapping succeeds. Funnel and Serve share one mapping namespace, so this coordinate clear removes the current handler at publicPort and path and disables Funnel visibility for the host and port. Prefer the exact handle's TailscalePublishedService.close when replacements can race: a stale handle cannot remove its successor.

Implementation

Future<void> clear({int publicPort = 443, String path = '/'});