ListItem constructor

const ListItem({
  1. int? value,
  2. Key? key,
  3. NullableElementCallback? ref,
  4. String? id,
  5. String? title,
  6. String? style,
  7. String? className,
  8. bool? hidden,
  9. String? innerText,
  10. Widget? child,
  11. List<Widget>? children,
  12. EventCallback? onClick,
  13. Map<String, String>? additionalAttributes,
})

Implementation

const ListItem({
  this.value,
  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,
      );