isWellKnownPath static method

bool isWellKnownPath(
  1. String path
)

Returns true if path starts with /.well-known/.

Implementation

static bool isWellKnownPath(String path) => path.startsWith('/.well-known/');