getStreamingProperty method

Future<String> getStreamingProperty(
  1. int playerId,
  2. StreamingPropertyType type
)

Retrieves a specific property value obtained by the streaming engine (Smooth Streaming, HLS, DASH, or Widevine).

Implementation

Future<String> getStreamingProperty(
  int playerId,
  StreamingPropertyType type,
) {
  throw UnimplementedError(
    'getStreamingProperty() has not been implemented.',
  );
}