Future<Null> setLooping(bool value) async { if (isDisposed) { return; } await _channel.invokeMethod( 'setLooping', {'textureId': _textureId, 'looping': value}); }