frameRate property

int frameRate

Implementation

int get frameRate => _actualFrameRate;
void frameRate=(int frameRate)

Implementation

set frameRate(int frameRate) {
  _desiredFrameTime = Duration(milliseconds: (1000.0 / frameRate).floor());
}