setLooping method

Future<void> setLooping(
  1. bool looping
)

set loop play

Implementation

Future<void> setLooping(bool looping) async {
  await engineInstanceMethodChannel.invokeMethod('setLooping', looping);
}