set static method

void set(
  1. String url
)

Set the canonical URL for the current page

Implementation

static void set(String url) {
  if (!Webify.isInitialized) return;
  Webify.instance.platform.setCanonicalUrl(url);
}