videoUri property

Uri videoUri

Implementation

Uri get videoUri {
  if (contentDetail.videoUrl == null) {
    throw Exception('videoUrl is null');
  }
  final videoUri = Uri.parse(contentDetail.videoUrl!);
  return videoUri;
}