getController static method

ImpulsePlayerController? getController(
  1. int viewId
)

Implementation

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