setLooping method
Sets the looping attribute of the video.
Implementation
@override
Future<void> setLooping(int? textureId, bool looping) {
return _channel.invokeMethod<void>(
'setLooping',
<String, dynamic>{
'textureId': textureId,
'looping': looping,
},
);
}