value method

Progress value(
  1. num number, {
  2. bool? removeIf,
})

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