meter constructor

const meter(
  1. List<Component> children, {
  2. double? value,
  3. double? min,
  4. double? max,
  5. double? low,
  6. double? high,
  7. double? optimum,
  8. String? id,
  9. String? classes,
  10. Styles? styles,
  11. Map<String, String>? attributes,
  12. Map<String, EventCallback>? events,
  13. Key? key,
})

The <meter> HTML element represents either a scalar value within a known range or a fractional value.

Implementation

const meter(
  this.children, {
  this.value,
  this.min,
  this.max,
  this.low,
  this.high,
  this.optimum,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});