start method
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;
}