percentageProgress property

double percentageProgress

The number of attempted tiles over the number of available tiles as a percentage

Equal to attemptedTiles / maxTiles multiplied by 100.

Implementation

double get percentageProgress => (attemptedTiles / maxTiles) * 100;