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