step method
Incremental values that are valid. Read more...
Implementation
Input step(int number, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('step', number.toString());
node.attrs!.add(attr);
}
return this;
}