isPaused method

Future<bool?> isPaused()

Checks if the player is currently paused.

Returns true if the player is paused, otherwise false.

Implementation

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