Ol constructor

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

Creates an <ol> ordered list element descriptor.

Implementation

Ol({
  super.className,
  super.style,
  super.attrs,
  super.children = const [],
  super.on,
}) : super('ol');