setDataSource method
Implementation
Future<void> setDataSource({String uri='',String path=''}) async {
assert(uri.isNotEmpty || path.isNotEmpty);
await _ensureInitialized();
if(_isNeedDisposed) return;
await _vlcApi.setDataSource(uri,path,_textureId);
}