ol constructor

const ol(
  1. List<Component> children, {
  2. bool reversed = false,
  3. int? start,
  4. NumberingType? type,
  5. String? id,
  6. String? classes,
  7. Styles? styles,
  8. Map<String, String>? attributes,
  9. Map<String, EventCallback>? events,
  10. Key? key,
})

The <ol> HTML element represents an ordered list of items — typically rendered as a numbered list.

Implementation

const ol(
  this.children, {
  this.reversed = false,
  this.start,
  this.type,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});