start method

Ol start(
  1. int number, {
  2. bool? removeIf,
})

Start counting from for the list items. Read more...

Implementation

Ol start(int number, {bool? removeIf}) {
  if (removeIf != true && node.attrs != null) {
    VirtualAttr attr = VirtualAttr('start', number.toString());
    node.attrs!.add(attr);
  }
  return this;
}