updateFps method
- dynamic _
Updates the FPS for each individual video feed to its number of frames received in the past second
Implementation
/// number of frames received in the past second
void updateFps([_]) {
for (final feed in feeds.values) {
feed.updateFps();
}
notifyListeners();
}