VideoProxyServer constructor

VideoProxyServer(
  1. BaseCacheManager cacheManager
)

Factory constructor that returns the singleton instance

Implementation

factory VideoProxyServer(BaseCacheManager cacheManager) {
  _instance ??= VideoProxyServer._internal(cacheManager);
  return _instance!;
}