ListItem.unordered constructor

ListItem.unordered({
  1. ListItemType? type = ListItemType.unordered,
  2. required String? text,
  3. String? index,
  4. double? indent,
  5. String? punctuation,
  6. List<Widget>? children,
})

Implementation

ListItem.unordered({
  this.type = ListItemType.unordered,
  required this.text,
  this.index,
  this.indent,
  this.punctuation,
  this.children,
});