stylesheets property

List<String> get stylesheets

Additional stylesheets to load.

Returns a list of stylesheet URLs to include in the page.

Example

@override
List<String> get stylesheets => [
  '/css/main.css',
  'https://fonts.googleapis.com/css2?family=Inter&display=swap',
];

Implementation

List<String> get stylesheets => [];