getVideo method

Future<Video> getVideo ({int id: null })

Implementation

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