getController method

ModProgressController? getController(
  1. String id
)

Gets the controller for a progress by ID

Implementation

ModProgressController? getController(String id) {
  return _activeProgress[id]?.controller;
}