Wbr function

Component Wbr({
  1. String? className,
  2. String? style,
  3. String? id,
  4. Map<String, String>? attributes,
  5. Map<String, EventCallback>? events,
  6. Key? key,
})

A word break opportunity element.

The HTML <wbr> element represents a word break opportunity.

Implementation

Component Wbr({
  String? className,
  String? style,
  String? id,
  Map<String, String>? attributes,
  Map<String, EventCallback>? events,
  Key? key,
}) {
  return jaspr.wbr(
    classes: className,
    styles: parseStyles(style),
    id: id,
    attributes: attributes,
    events: events,
    key: key,
  );
}