Abbr constructor

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

Creates an <abbr> abbreviation descriptor with title shorthand.

Implementation

Abbr({super.text, String? title, super.className, super.style, Map<String, String>? attrs, super.children = const [], super.on})
    : super('abbr', attrs: _mergeAttrs(attrs, {if (title != null) 'title': title}));