value method
This attribute specifies how much of the task that has been completed. Read more...
Implementation
Progress value(num number, {bool? removeIf}) {
if (removeIf != true && node.attrs != null) {
VirtualAttr attr = VirtualAttr('value', number.toString());
node.attrs!.add(attr);
}
return this;
}