setLooping method
Implementation
@override
Future<void> setLooping(int textureId, bool looping) async {
await methodChannel.invokeMethod<void>(
'setLooping',
<String, dynamic>{
'textureId': textureId,
'looping': looping,
},
);
}