br constructor

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

The <br> HTML element produces a line break in text (carriage-return). It is useful for writing a poem or an address, where the division of lines is significant.

Implementation

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