headContent property

Object? get headContent

Additional content for the HTML <head> element.

Use this for meta tags, link tags, or other head content.

Example


```dart
@override
Object? get headContent => [
  meta(name: 'description', content: 'User profile'),
  link(rel: 'canonical', href: 'https://example.com/users'),
];

Implementation

Object? get headContent => null;