$form function
Creates a form node.
Implementation
DOMElement $form(
        {Object? id,
        Object? classes,
        Object? style,
        Map<String, String>? attributes,
        Object? content,
        bool? hidden,
        bool commented = false}) =>
    $tag('form',
        id: id,
        classes: classes,
        style: style,
        attributes: attributes,
        content: content,
        hidden: hidden,
        commented: commented);