updateSource method
鉴权过期,更新下载源信息
Implementation
Future<dynamic> updateSource(String type, String vid, String index,
{String? region,
String? accessKeyId,
String? accessKeySecret,
String? securityToken,
String? playAuth}) {
var map = {
'type': type,
'vid': vid,
'index': index,
'region': region,
'accessKeyId': accessKeyId,
'accessKeySecret': accessKeySecret,
'securityToken': securityToken,
'playAuth': playAuth
};
return _methodChannel.invokeMethod("updateSource", map);
}