playerOfIndex method
获取指定index的player
Implementation
VPVideoController? playerOfIndex(int index) {
if (index < 0 || index > playerList.length - 1) {
return null;
}
return playerList[index];
}
获取指定index的player
VPVideoController? playerOfIndex(int index) {
if (index < 0 || index > playerList.length - 1) {
return null;
}
return playerList[index];
}