footer
FooterElement
footer(
Create a footer element
Implementation
FooterElement footer({
List<ReactElement>? children,
ReactElement? child,
Map<String, dynamic>? props,
Map<String, dynamic>? style,
String? className,
}) {
final p = _buildProps(props: props, style: style, className: className);
final jsObj = (children != null && children.isNotEmpty)
? createElementWithChildren('footer'.toJS, _propsOrNull(p), children)
: (child != null)
? createElement('footer'.toJS, _propsOrNull(p), child)
: createElement('footer'.toJS, _propsOrNull(p));
return FooterElement.fromJS(jsObj);
}