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 publications are independent of Serve — this clears only the Funnel mapping and does not touch any Serve path for the same port. Use Serve for tailnet-only publication.

Implementation

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