stylesheet method
Injects a global <link rel="stylesheet"> tag.
Use this for CSS that is not colocated with any specific component — resets, global variables, typography, layout primitives. Component-specific styles belong in Component.styles.
Implementation
AppBuilder stylesheet(String path) {
_stylesheets.add(path);
return this;
}