Dialog constructor
Dialog({})
Creates a <dialog> element descriptor with open attribute shorthand.
Implementation
Dialog({super.className, super.style, Map<String, String>? attrs, super.children = const [], super.on, bool? open})
: super('dialog', attrs: _mergeAttrs(attrs, {if (open == true) 'open': 'open'}));