isRepeated method

Future<bool?> isRepeated()

Checks if the player is in repeat mode.

Returns true if the player is repeating, otherwise false.

Implementation

Future<bool?> isRepeated() async {
  return await TargetvideoFlutterPluginPlatform.instance.isRepeated(playerReference);
}