OrderedList constructor

OrderedList(
  1. List children,
  2. Next next, {
  3. double? indent,
  4. String punctuation = '.',
})

Implementation

OrderedList(this.children, this.next, {this.indent, this.punctuation = '.'});