clearStats method

void clearStats()

Resets the cached statistics for kerning and width.

This method sets the average kerning and average width to their default uninitialized state, forcing recalculation when next accessed.

Implementation

void clearStats() {
  _averageKerning = -1;
  _averageWidth = -1;
}