hr constructor

const hr({
  1. String? id,
  2. String? classes,
  3. Styles? styles,
  4. Map<String, String>? attributes,
  5. Map<String, EventCallback>? events,
  6. Key? key,
})

The <hr> HTML element represents a thematic break between paragraph-level elements: for example, a change of scene in a story, or a shift of topic within a section.

Implementation

const hr({
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});