play method

Future<void> play()

Implementation

Future<void> play() async {
  if (!_isChangingSource) {
    if (looping) _seekToBegin();
    if (_activeAd == null) await _video?.play();
  }
}