progress constructor

const progress(
  1. List<Component> children, {
  2. double? value,
  3. double? max,
  4. String? id,
  5. String? classes,
  6. Styles? styles,
  7. Map<String, String>? attributes,
  8. Map<String, EventCallback>? events,
  9. Key? key,
})

The <progress> HTML element displays an indicator showing the completion progress of a task, typically displayed as a progress bar.

Implementation

const progress(
  this.children, {
  this.value,
  this.max,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});