total property

int total

The total value.

Implementation

int get total => _total;
void total=(int newTotalTickCount)

Implementation

set total(int newTotalTickCount) {
  assert(newTotalTickCount > 1);
  _total = newTotalTickCount;
}