script function
Implementation
Element script(
dynamic children, {
String? src,
String? type,
bool? async,
bool? defer,
String? id,
String? className,
Map<String, dynamic>? attributes,
}) => _el(
'script',
children,
id: id,
className: className,
attributes: {
'src': src,
'type': type,
'async': async,
'defer': defer,
...?attributes,
},
);