current property

String? get current

Get the current canonical URL (if set)

Implementation

static String? get current {
  if (!Webify.isInitialized) return null;
  // We'd need to read from DOM, but for now track internally
  return null;
}