setLooping method
Implementation
Future<void> setLooping(bool looping) async {
if (_isDisposed) return;
_looping = looping;
value = value.copyWith(isLooping: looping);
final id = _textureId;
if (id == null) return;
await VideoViewPlayerPlatform.instance.setLooping(id, looping);
}