template function
Implementation
Element template(
dynamic children, {
String? shadowrootmode,
String? id,
String? className,
Map<String, dynamic>? attributes,
}) => _el(
'template',
children,
id: id,
className: className,
attributes: {'shadowrootmode': shadowrootmode, ...?attributes},
);