load property
Future
get
load
get video meta data from vimeo server.
Implementation
Future<dynamic> get load async {
if (videoId != null) {
if (accessKey?.isEmpty ?? true) {
return _videoWithoutAuth;
}
return _videoWithAuth;
}
return _liveStreaming;
}