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