Future<Null> setLooping(bool value)

Source

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