Progress constructor

const Progress({
  1. num? value,
  2. num? max,
  3. Key? key,
  4. String? id,
  5. bool? hidden,
  6. bool? draggable,
  7. bool? contentEditable,
  8. int? tabIndex,
  9. String? title,
  10. String? style,
  11. String? classAttribute,
  12. String? onClickAttribute,
  13. String? innerText,
  14. List<Widget>? children,
  15. EventCallback? onClick,
  16. Map<String, String>? additionalAttributes,
})

Implementation

const Progress({
  this.value,
  this.max,
  Key? key,
  String? id,
  bool? hidden,
  bool? draggable,
  bool? contentEditable,
  int? tabIndex,
  String? title,
  String? style,
  String? classAttribute,
  String? onClickAttribute,
  String? innerText,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        id: id,
        title: title,
        tabIndex: tabIndex,
        draggable: draggable,
        contentEditable: contentEditable,
        hidden: hidden,
        style: style,
        classAttribute: classAttribute,
        onClickAttribute: onClickAttribute,
        innerText: innerText,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );