incrPercent method

(ProgressModel, Cmd?) incrPercent(
  1. double v
)

Increments the percentage by the given amount.

Implementation

(ProgressModel, Cmd?) incrPercent(double v) {
  return setPercent(_targetPercent + v);
}