Mark constructor

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

Creates a <mark> highlight descriptor.

Implementation

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