setLooping method
Sets the looping attribute of the video.
Implementation
@override
Future<void> setLooping(int textureId, bool looping) async {
var controller = VideoPlayerWinPlatform.instance.getPlayerByTextureId(
textureId,
);
await controller?.setLooping(looping);
}