getController static method
Implementation
static ImpulsePlayerController? getController(int viewId) {
String controllerId = _attachs.entries
.firstWhere(
(entry) => entry.value == viewId,
)
.key;
return _controllers[controllerId];
}