El.raw constructor

const El.raw(
  1. String tag, {
  2. String? text,
  3. String? className,
  4. String? style,
  5. Map<String, String>? attrs,
  6. Map<String, BloomEventHandler>? on,
  7. List<BloomNode> children = const [],
})

Const constructor for El when no event callback shorthand is needed.

Implementation

const El.raw(
  super.tag, {
  super.text,
  super.className,
  super.style,
  super.attrs,
  super.on,
  super.children = const [],
});