resumeVideo method

Future<String?> resumeVideo()

Implementation

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