TimeEl.raw constructor

const TimeEl.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 <time> without attribute shorthand.

Implementation

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