ListItem.ordered constructor

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

Implementation

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