VideoViewPlayerPoolManager constructor
Creates a VideoViewPlayerPoolManager managing the specified feed urls.
Implementation
VideoViewPlayerPoolManager({required this.urls}) {
_networkSubscription = VideoViewPlayerPlatform.instance.onNetworkTypeChanged.listen((netType) {
if (_networkType != netType) {
_networkType = netType;
notifyListeners();
}
});
}