getControllerForUrl method

VideoViewPlayerController? getControllerForUrl(
  1. String url
)

Retrieves the active controller for a given url, if assigned in the pool.

Implementation

VideoViewPlayerController? getControllerForUrl(String url) {
  return _activeControllers[url];
}