favicon method

AppBuilder favicon(
  1. String path
)

Injects a <link rel="icon"> tag with path as the favicon URL.

Implementation

AppBuilder favicon(String path) {
  _favicon = path;
  return this;
}