setData method
Set dashplusplayer properties,can be called after initialized.
Implementation
Future<bool> setData(Map<DashPlayerProperty, Object> data) async {
if (_isDisposedOrNotInitialized) {
return false;
}
return _videoPlayerPlatform.setData(playerId, data);
}