setUrl method
Implementation
Future<String> setUrl(
String url, {
String title = "",
PlayType type = PlayType.Video,
}) {
final data = XmlText.setPlayURLXml(url, title: title, type: type);
return request('SetAVTransportURI', Utf8Encoder().convert(data));
}