A.raw constructor

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

Const constructor for <a> without hyperlink shorthands.

Implementation

const A.raw({
  super.text,
  super.className,
  super.style,
  super.attrs,
  super.on,
  super.children = const [],
}) : super('a');