isTPSArtificiallyCapped property

bool get isTPSArtificiallyCapped

Whether the number of tilesPerSecond could be higher, but is currently capped by the set rateLimit

This is only an approximate indicator.

Implementation

bool get isTPSArtificiallyCapped =>
    _tilesPerSecondLimit != null &&
    (tilesPerSecond >= _tilesPerSecondLimit - 0.5);