Td.raw constructor

const Td.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 <td> without attribute shorthands.

Implementation

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