$h1Props
El
$h1Props(
Creates an <h1> element with props.
Implementation
El $h1Props({
String? className,
String? id,
Map<String, dynamic>? style,
Map<String, dynamic>? props,
}) => El(
H1Element.fromJS(
_createJsxElement(
'h1',
_buildJsxProps(className: className, id: id, style: style, props: props),
),
),
);