$footer

El $footer({

  1. String? className,
  2. String? id,
  3. Map<String, dynamic>? style,
  4. Map<String, dynamic>? props,
})

Creates a <footer> element wrapper for JSX-style composition.

Implementation

El $footer({
  String? className,
  String? id,
  Map<String, dynamic>? style,
  Map<String, dynamic>? props,
}) => El(
  FooterElement.fromJS(
    _createJsxElement(
      'footer',
      _buildJsxProps(className: className, id: id, style: style, props: props),
    ),
  ),
);