optimum method

Meter optimum(
  1. num number, {
  2. bool? removeIf,
})

This attribute indicates the optimal numeric value. Read more...

Implementation

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