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