getStreamingProperty method
Retrieves a specific property value obtained by the streaming engine (Smooth Streaming, HLS, DASH, or Widevine).
Implementation
Future<String> getStreamingProperty(StreamingPropertyType type) async {
if (_isDisposedOrNotInitialized) {
return '';
}
return _videoPlayerPlatform.getStreamingProperty(_playerId, type);
}