Figure.raw constructor

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

Const constructor for <figure>.

Implementation

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