wbr constructor

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

The <wbr> HTML element represents a word break opportunity—a position within text where the browser may optionally break a line, though its line-breaking rules would not otherwise create a break at that location.

Implementation

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