getVideo method
Implementation
Future<Video> getVideo({int id = null}) async =>
(id == null) ? _getVideoRandom() : _getVideoFromID(id);
Future<Video> getVideo({int id = null}) async =>
(id == null) ? _getVideoRandom() : _getVideoFromID(id);