getData method

Get dashplusplayer properties,can be called after initialized.

Implementation

Future<Map<DashPlayerProperty, Object>> getData(
  Set<DashPlayerProperty> keys,
) async {
  if (_isDisposedOrNotInitialized) {
    return <DashPlayerProperty, Object>{};
  }

  return _videoPlayerPlatform.getData(playerId, keys);
}