Meter constructor

const Meter({
  1. int? value,
  2. int? max,
  3. int? min,
  4. int? high,
  5. int? low,
  6. int? optimum,
  7. Key? key,
  8. NullableElementCallback? ref,
  9. String? id,
  10. String? title,
  11. String? style,
  12. String? className,
  13. bool? hidden,
  14. String? innerText,
  15. Widget? child,
  16. List<Widget>? children,
  17. EventCallback? onClick,
  18. Map<String, String>? additionalAttributes,
})

Implementation

const Meter({
  this.value,
  this.max,
  this.min,
  this.high,
  this.low,
  this.optimum,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );