pauseVideo method

Future<String?> pauseVideo()

Implementation

Future<String?> pauseVideo() {
  if (!isVideo) {
    throw StateError('Self render feed ad is not a video ad.');
  }
  return adObject.pauseVideo();
}